About

CSS, short for Cascading Style Sheets, is a language used to control the visual presentation of documents written in a markup language, including , , , and . 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:

  1. Using tag name
  2. Using class name
  3. 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

Validation

Browser Support

CSS Pre-processors

Reset Stylesheets

CSS Frameworks

Chat Room

Chat about CSS with other Stack Overflow users

history|show excerpt|excerpt history