Head First Html: Chapter 8
9th grade, 10th grade, 11th grade, 12th grade, College: First year, College: Second year, College: Third year, College: Fourth year, Graduate school, Professional
computers, programming languages, html, internet, web, browsers, page design, user interfaces
______ contains simple statements, called rules
CSS
Each rule provides the ______ for a selection of XHTML elements
style
A typical rule consists of a ______ along with one or more properties and values
selector
Each property declaration ends with a ______
semicolon ;
All properties and values in a rule go between ______
braces {}
You can select any element using its ______ as the selector
name
By separating element names with ______ you can select multiple elements at once
commas ,
One of the easiest ways to include a style in HTML is the ______ tag
<style>
For XHTML and for sites of any complexity, you should link to an ______ style sheet
external
The ______ element is used to include an external style sheet
<link>
If a property that is ______ is set for the <body> element, all the <body>'s child elements will inherit it
inherited
You can override properties that are inherited by creating a ______ rule for the element you'd like to change
specific
Use the ______ attribute to add elements to a class
class
Use a ______ between the element name and the class name to select a specific element in that class
"."
Use ______ to select any elements that belong to the class
".classname"
In the class attribute separate multiple classes with a ______
space
You can validate your CSS with the ______
W3C Validator http://jigsaw.w3.org/css-validator/