Term
____ elements are used to group related elements together into logical sections |
|
Definition
|
|
Term
creating logical sections can help you identify the main content areas,header, and footer of your page. |
|
Definition
|
|
Term
you can use ___ elements to group elements together that need a common style |
|
Definition
|
|
Term
use nested ____ elements to add further structure to your files for clarity or styling. but don't add structure unless you really need it. |
|
Definition
|
|
Term
once you have grouped together sections of content with ___ elements, you can style the ___ just like you would any other block element. For example, you can add a border around a group of elements using the border property on the ___ they are nested in |
|
Definition
|
|
Term
the width property sets the width of the content are of an element. |
|
Definition
|
|
Term
the _____ width of an element is the width of the content area, plus the width of any padding, border, and margins you add. |
|
Definition
|
|
Term
once you set the width of an element, it no longer expands to fit the entire width of the browser window |
|
Definition
|
|
Term
text-align is a property for _____ elements that center all inline content in the block element. it is inherited by any nested block elements. |
|
Definition
|
|
Term
you can use descendant selectors to select elements nested within other elements. |
|
Definition
|
|
Term
you can use shortcuts for related properties.for instance padding-top,-right,-bottom,-left are all related and can be specified with one shortcut rule padding |
|
Definition
|
|
Term
padding, margin, border, background, and font properties can all be specified with _____ |
|
Definition
|
|
Term
the _____ inline element is similar to the div element: it is used to group together related inline elements and text. |
|
Definition
|
|
Term
just like with ___ you can add span elements to classes(or give span elements unique ids) to style them. |
|
Definition
|
|
Term
the ___ element is an example of an element with differnet states. The main ___ element states are unvisited, visited,, and hover. |
|
Definition
|
|
Term
You can style each of these states separately with ________. the ___________ used most often with the a element are :link, for unvisited links,:visited, for visited links, and :hover for the hover state |
|
Definition
|
|
Term
other elements support the :hover pseudo-class and some ________ also support the :first-child,:active, and :focus qseudo-classes for other elements. |
|
Definition
|
|