Term
CSS has simple statments, what are they called? |
|
Definition
|
|
Term
|
Definition
provides style for each and every xhtml element |
|
|
Term
What does a rule consist of? |
|
Definition
selectors, properties, and values |
|
|
Term
|
Definition
specifies the elements the rules apply to |
|
|
Term
what does each property declaration end with? |
|
Definition
|
|
Term
What goes around property declarations? |
|
Definition
|
|
Term
How do you select an element? |
|
Definition
use it's name as the selector |
|
|
Term
How do you select more than one element at once? |
|
Definition
put a comma in between element names |
|
|
Term
How do I include style into HTML? |
|
Definition
just put a style tage into the head |
|
|
Term
How would I include style into XHTML? |
|
Definition
make an external style page, then link oyur pages to it |
|
|
Term
|
Definition
put a link element into the hed of all of your pages |
|
|
Term
|
Definition
style that is passed down from big elements such as body to smaller elements such as h1, h2, and p |
|
|
Term
What is property override? |
|
Definition
When you use selectors to overide inheritance |
|
|
Term
What is a class? What does it do? |
|
Definition
a class is a special type of selector, it allows you to select multiple elements within a class that you insert manually into your other pages |
|
|
Term
How do I know if my CSS is right? |
|
Definition
You can manually insert it into the w3c validator at http://jigsaw.w3.org/css-validator |
|
|