What is the difference between "#" and "." when declaring a set of styles for a particular element? Here are two examples.
.selector {
background-color:red;
property:value;
}
#selector {
background-color:red;
property:value;
}
|
4
|
What is the difference between "#" and "." when declaring a set of styles for a particular element? Here are two examples.
|
|||
|
|
|
|
Yes, they are different...
Typical usesGenerally speaking, you use # for styling something you know is only going to appear once, for example, things like high level layout divs such sidebars, banner areas etc. Classes are used where the style is repeated, e.g. say you head a special form of header for error messages, you could create a style SpecificityAnother aspect where selectors differ is in their specificity - an id selector is deemed to be more specific than class selector. This means that where styles conflict on an element, the ones defined with the more specific selector will override less specific selectors. For example, given Learn more about CSS selectorsSee Selectutorial for more great primers on CSS selectors - they are incredibly powerful, and if your conception is simply that "# is used for DIVs" you'd do well to read up on exactly how to use CSS more effectively. |
||||||
|
|
|
The dot signifies a class name while the # signifies an element with a specific id attribute. The class will apply to any element decorated with that particular class, while the # style will only apply to the element with that particular id. Class name:
Named element:
|
||||||||||
|
|
|
The
Note that in a HTML document, the id attribute must be unique, so if you have more than one element needing a specific style, you should use a class name. |
||
|
|
|
|
The # is an id selector. It matches only elements with a matching id. Next style rule will match the element that has an id attribute with a value of "green":
See http://www.w3schools.com/css/css_syntax.asp for more information |
||
|
|
|
|
Note that the id MUST be unique throughout the document, whilst any number of elements may share a class. |
|||
|
|
|
|
A couple of quick extensions on what has already been said... An For example, given this HTML extract:
You could apply different styles with these:
Another useful thing to know: you can have multiple classes on an element, by space-delimiting them...
Which allows you to have common styling in
|
||
|
|
|
|
It is also worth noting that in the cascade, an id (#) selector is more specific than a class (.) selector. Therefore, rules in the id statement will override rules in the class statement. For example, if both of the following statements:
are applied to the same HTML element:
the color:blue rule would override the color:red rule. |
|||
|
|
|
|
Like pretty much everyone has stated already: A period (".") indicates a class, and a hash ("#") indicates an ID. The fundamental difference between is that you can reuse a class on your page over and over, whereas an ID can be used once. That is, of course, if you are sticking to WC3 standards. A page will still render if you have multiple elements with the same ID, but you will run into problems if/when you try to dynamically update said elements by calling them with their ID, since they are not unique. It is also useful to note that ID properties will supersede class properties. |
||
|
|