CSS, short for Cascading Style Sheets, is a language used to control the visual presentation of documents written in a markup language, including html, xml, xhtml, svg and xul. In early days, the visual presentation was held by HTML attributes, then, CSS was introduced to separate the control of the visual presentation from the content.
A basic CSS document is made of rule sets. Each rule set starts with a selector (a pattern that matches elements in an HTML or XML document) and is followed by a block of one or more property declarations that define the presentation of the matching elements. For example:
/* This is a comment */
a { /* Find all <a> tags, */
color: orange; /* change their text color to orange, */
background-color: pink; /* their background color to pink, */
text-decoration: none; /* and remove the underline. */
}
a:hover { /* But when you hover over an <a> element */
color: red; /* change the color to red */
text-decoration: underline; /* and add an underline again */
}
The simple example above also illustrates why they are called cascading style sheets. When you hover over a link (i.e., an <a> element) in an HTML page with this style sheet applied to it, both rules apply. So, the link will have a pink background. But, since the a:hover selector is more specific, its color and text-decoration properties override those from the <a> rule set.
The cascading order defines how specificity and other factors determine which property value is applied to an element.
Some more CSS, continuing from the example above:
/* Selectors with greater Specificity override less specific ones */
#article a.tag {
color: #4A6B82;
}
/* Complex selectors can be created from joining multiple simple ones together */
#sidebar > h3 + p a:first-child {
border-bottom: 1px solid #333;
font-style: italic;
}
/* It is also possible to style tags depending on an attribute */
div[id] a[target=_blank]{
color: white;
}
Also CSS selector can be applicable in three ways:
- Using tag name
- Using class name
- Using ID of html element
In these types, selector using ID have higher priority than selector using class name and selector using class name has higher priority than selector using tag name.
For instance:
/*Creates an anchor with a class of class1 and an ID of anchor 1*/
<a class="class1" id="anchor1">Sample</a>
a { /* anchor tag */
color:orange;
}
.class1 { /* any tag with class name class1 */
color:red;
}
#anchor1 { /* any tag with id anchor1 */
color:green;
}
/* In above example color of the string "sample" will be green */
References
- W3C CSS2.1 Specification
- W3C CSS3 Selectors Specification
- W3C Cascading Style Sheets home page
- SitePoint CSS Reference
- HTML Dog: HTML and CSS Tutorials
- Cascading Style Sheets on the Web Standards Curriculum
- The 30 CSS Selectors you Must Memorize
Validation
Browser Support
- MDN: Mozilla CSS support chart
- MSDN: CSS Compatibility and Internet Explorer
- Opera web specification support pages
- Konqueror CSS support
- QuirksMode CSS
- When can I use... Compatibility tables for CSS3 and more
- CSS3 Selectors Test
- Wikipedia: Comparison of layout engines
CSS Pre-processors
Reset Stylesheets
CSS Frameworks
- Blueprint
- 960 CSS Framework
- jQuery UI CSS Framework
- YAML
- YUI CSS Grids
- Twitter Bootstrap
- Zurb's Foundation
Chat Room
Chat about CSS with other Stack Overflow users