Consider:
p {
...
}
.foo {
...
}
#bar {
...
}
What is the correct name for these statements in CSS? I've seen them called selectors, rules or rulesets, but which is correct?
|
|
Consider:
p {
...
}
.foo {
...
}
#bar {
...
}
What is the correct name for these statements in CSS? I've seen them called selectors, rules or rulesets, but which is correct?
|
||
|
|
|
|
A rule would be considered:
A selector in this case is:
A rule is made up of selectors & declarations. A declaration is property:value so the entire rule would be:
A rule can have multiple declartions and multiple selectors so we can actually have:
A ruleset would be multiple rules. Here's a quick source on this or the CSS 1 Specification. |
|||
|
|
|
In this example:
|
|||
|
|
|
|
CSS is made up of a number of rules in the form
So the .foo and #bar and p are called selectors but the full statement with the curlies are called rules. |
||
|
|
|
|
According to the specification, they are called Selectors. |
||
|
|
|
|
They are selectors - see W3C specification |
||
|
|
|
They are called selectors: http://www.codestyle.org/css/Glossary.shtml
See also, the W3 specs: http://www.w3.org/TR/CSS2/selector.html |
||||||||||
|
|
|
I usually call them rules or classes. |
||
|
|