What do these two CSS selectors mean?
h1#myItemOne h2
{
background:#0099FF;
color: #A3F4A3;
}
h1.myItemTwo h2
{
background:#0099FF;
color: #A3F4A3;
}
Are these two selectors valid for use?
|
|
|
|
|
|
|
The first matches an h2 element that is a Example:
The second matches an h2 element that is a Example:
They are both valid. The major difference is that id should be unique. Class does not have this requirement. Reference: http://www.w3.org/TR/CSS2/selector.html |
||||||
|
|
|
Means any h2 that is a descendant of an h1 element with ID equal to "myItemOne"
Means any h2 that is a descendant of an h1 element with class equal to "myItemOne" |
||
|
|
|
|
"#" defines a unique id in a page, the dot defines a class that you can use on several places. Usage:
|
||
|
|