Term
| ___ elements are used to group related elements together into logical sections. |
|
Definition
|
|
Term
| Creating _______ sections can help you identify the main content areas, header, and foter of your page. |
|
Definition
|
|
Term
| You can use ___ elements to group elements together that need a common style. |
|
Definition
|
|
Term
| Use ______ DIV elements to add further stucture to yoyr files clarity or styling. But dont't add stucture unless you really need it. |
|
Definition
|
|
Term
| Once you have grouped together sections of content with ___ elements, you can style the ___'s just like you would any other block elements. |
|
Definition
|
|
Term
| You can add a border around a group of elements using the ______ property on teh DIV the are nested in. |
|
Definition
|
|
Term
| The _____ property sets the width of the content are of an element. |
|
Definition
|
|
Term
| The total width of an element is the _____ of teh conctent area, plus the width of any _______, ______, and _______ you add. |
|
Definition
| Width, padding, border, and margins |
|
|
Term
| Once you set the _____ of an elements, it no longer expands to fit the entire width of the browser window. |
|
Definition
|
|
Term
| ____-_____ is a peoperty for block elements that centers all inline content on teh block element. It is inherited by any nested block elements. |
|
Definition
|
|
Term
| You can use __________ selectors to select elemtents within other elements. |
|
Definition
|
|
Term
| You can use _________ for related properties. |
|
Definition
|
|
Term
| Padding, margin, border, background, and font properties can all be specified with _________. |
|
Definition
|
|
Term
| The ____ inline element is similar to teh DIV element: it is used to group together related inline elements and text. |
|
Definition
|
|
Term
| Just like with DIV, you can add SPAN elements to classas to _____ them. |
|
Definition
|
|
Term
| The _ element is an example of an element with different states. |
|
Definition
|
|
Term
| The main A element states are _________, _______, and _____. |
|
Definition
| unvisited, visited, and hover |
|
|
Term
| You can style each of these states separately with ______-classes. |
|
Definition
|
|
Term
| The pseduo-classes used most often with the A element are :link, for unvisited _____, :visited, for visited _____, and :hover, for the _____ state. |
|
Definition
|
|
Term
| Other elements support the :_____ pseudo-class, and some browsers also support the :_____-_____, :______, and :_____ pseudo-classes for other elements. |
|
Definition
hover frist-child active focus |
|
|