Online CSS Tutorial. Cascading Style Sheets (CSS). How to add Cascading Style Sheets to your Website

CSS Style, Adding Cascading Style Sheets to your Website

In computing, Cascading Style Sheets (CSS) is a stylesheet language used to describe the presentation of a document written in a markup language. Its most common application is to style web pages written in HTML and XHTML, but the language can be applied to any kind of XML document, including SVG and XUL. The CSS specifications are maintained by the World Wide Web Consortium (W3C).

CSS has various levels and profiles. Each level of CSS builds upon the last, typically adding new features and are typically denoted as CSS1, CSS2, and CSS3. Profiles are typically a subset of one or more levels of CSS built for a particular device or user interface. Currently there are profiles for mobile devices, printers, and television sets. Profiles should not be confused with media types which were added in CSS2.

The use of CSS to position the content of a web page is sometimes referred to as CSS-P or CSS Positioning.

Overview
CSS is used by both the authors and readers of web pages to define colors, fonts, layout, and other aspects of document presentation. It is designed primarily to enable the separation of document content (written in HTML or a similar markup language) from document presentation (written in CSS). This separation can improve content accessibility, provide more flexibility and control in the specification of presentational characteristics, and reduce complexity and repetition in the structural content. CSS can also allow the same markup page to be presented in different styles for different rendering methods, such as on-screen, in print, by voice (when read out by a speech-based browser or screen reader) and on braille-based, tactile devices. Similarly, identical HTML or XML markup can be displayed in a variety of styles, 'brands', liveries or color schemes by using different CSS.

CSS information can be provided by various sources:

Author styles (style information provided by the web page author), in the form of
external stylesheets, i.e. a separate CSS-file referenced from the document
embedded style, blocks of CSS information inside the HTML document itself
inline styles, inside the HTML document, style information on a single element, specified using the "style" attribute.

User style
a local CSS-file specified by the user using options in the web browser, and acting as an override, to be applied to all documents.
User agent style
the default style sheet applied by the user agent, e.g. the browser's default presentation of elements.
CSS specifies a priority scheme to determine which style rules apply if more than one rule matches against a particular element. In this so-called cascade, priorities or weights are calculated and assigned to rules, so that the results are predictable.

Advantages
Advantages of using CSS include:
Presentation information for an entire website or collection of pages can be held in one place, and can be updated quickly and easily.
Different users can have different style sheets: for example a large text alternative for visually-impaired users, or a layout optimized for small displays for mobile phones.
The document code is reduced in size and complexity, since it does not need to contain any presentational markup.

Syntax
CSS has a simple syntax, and uses a number of English keywords to specify the names of various style properties.

A style sheet consists of a list of rules. Each rule consists of one or more comma-separated selectors and a declaration block. A declaration-block consists of a list of semicolon-separated declarations in curly braces. Each declaration itself consists of a property, a colon (:) then a value.

Example:
p {
  font-family: "Garamond", serif;
}
h2 {
  font-size: 110%;
  color: red;
  background: white;
}
.note {
  color: red;
  background: yellow;
  font-weight: bold;
}
p.warning {
  background: url(warning.png) no-repeat fixed top;
}
#paragraph1 {
  margin: 0;
}
a:hover {
  text-decoration: none;
}
#news p {
  color: red;
}
These are seven rules, with selectors p, h2, .note, p.warning, #paragraph1, a:hover and #news p.

Property values are specified by, for example, color: red, where the property color is given the value red.

In the first two rules, the HTML elements p (paragraph) and h2 (level-two heading) are being assigned stylistic attributes. The paragraph element will be rendered in Garamond font or, if Garamond is unavailable, some other serif font. The level-two heading element will be rendered in red on a white background.

The third rule shown matches those elements that have a class attribute containing the token 'note'. For example:
< p class="note">This paragraph will be rendered in red and bold, with a yellow background.< /p>
The fourth rule shown matches those p elements that have a class attribute containing the token 'warning'. This is in contrast to the third rule which matched all elements, not just paragraph tags, that are marked with a given class attribute (the third rule .note could also have been written as *.note).

In fact, .class selectors involve a special kind of attribute matching, as opposed to testing for equality. Since the HTML class attribute is defined as a whitespace-separated list of tokens, a class selector is evaluated against each of them separately. For example,

would apply both the note and the warning rule.

The fifth rule will match the one and only element in each HTML document whose id attribute is set to paragraph1: It will have no margin within its rendering 'box' as its margin width is set to zero. For example: < p id="paragraph1">This paragraph will have no margin within its rendering 'box' as its margin width is set to zero. There can only be one of these paragraphs per page < /p> The sixth rule defines the hover style for a (anchor) elements. By default in most browsers, a elements are underlined. This rule will remove the underline when the user "hovers" the mouse cursor over these elements.

The last rule matches those p elements that are within the document element whose id attribute has the value news. It is an example of a descendant selector.

Because of the cascading nature of CSS rules, these last p elements will inherit font-family: "Garamond", serif as with all p elements. Those that have the token warning in the value of their class attribute, will inherit that background image too.

A CSS stylesheet can contain comments; the syntax for comments is similar to that used in the C programming language

/* comment */
Selectors & Pseudo Classes
In CSS, selectors are used to declare which elements a style applies to, a kind of match expression. Here are some examples of selector syntax:

All elements
that is, using the * selector
By element name
e.g. for all p or h2 elements
Descendants
e.g. for a elements that are descendants of li elements (e.g links inside lists) the selector is li a
class or id attributes
e.g. .class and/or #id for elements with class="class" or id="id"
Adjacent elements
e.g. for all p elements preceded by h2 elements, the selector would be h2 + p
Direct child element
e.g. for all span elements inside p, but no span elements deeper within the hierarchy, the selector would be p > span
By attribute
e.g. for all < input type="text"> the selector would be input[ type="text"]
In addition to these, a set of pseudo-classes can be used to define further behavior. Probably the best-known of these is :hover, which applies a style only when the user 'points to' the visible element, usually by holding the mouse cursor over it. It is appended to a selector as in a:hover or #elementid:hover. Other pseudo-classes and pseudo-elements are, for example, :first-line, :visited or :before. A special pseudo-class is :lang(c), where the style would be applied on an element only if it is in language "c".

Selectors may be combined in other ways too, especially in CSS 2.1, to achieve greater specificity and flexibility (see the complete definition of selectors at the W3C Web site).

In the following example, several selectors are grouped using comma separation. The rule sets the font for all HTML headings.

h1, h2, h3, h4, h5, h6 {
  font-family: "Arial", sans-serif;
}
To use a CSS stylesheet, one would save the CSS code in a file such as example.css and then either link to it or import it from HTML or XHTML web pages using one of the two following formats:

< link rel="stylesheet" href="example.css" type="text/css" />
< style type="text/css">
@import "example.css";
< /style>
In the first example, note that the /> syntax only applies in XHTML; if writing HTML, one would close an empty element such as this with >.

CSS styles may also be specified in the < head> tag or attached to a specific element via the style attribute.

In applying a CSS stylesheet to an XML document, this format would be used as per the XML example below:

< ?xml-stylesheet type="text/css" href="example.css"?>

History
Style sheets have existed in one form or another since the beginnings of SGML in the 1970s. Cascading Style Sheets were developed as a means for creating a consistent approach to providing style information for web documents.

As HTML grew, it came to encompass a wider variety of stylistic capabilities to meet the demands of web developers. This evolution gave the designer more control over site appearance but at the cost of HTML becoming more complex to write and maintain. Variations in web browser implementations made consistent site appearance difficult, and users had less control over how web content was displayed.

To improve the capabilities of web presentation, nine different style sheet languages were proposed to the W3C's www-style mailing list. Of the nine proposals, two were chosen as the foundation for what became CSS: Cascading HTML Style Sheets (CHSS) and Stream-based Style Sheet Proposal (SSP). Firstly, Håkon Wium Lie (now the CTO of Opera Software) proposed Cascading HTML Style Sheets (CHSS) in October 1994, a language which has some resemblance to today's CSS. Bert Bos was working on a browser called Argo which used its own style sheet language, Stream-based Style Sheet Proposal (SSP). Lie and Bos worked together to develop the CSS standard (the 'H' was removed from the name because these style sheets could be applied to other markup languages besides HTML).

Unlike existing style languages like DSSSL and FOSI, CSS allowed a document's style to be influenced by multiple style sheets. One style sheet could inherit or "cascade" from another, permitting a mixture of stylistic preferences controlled equally by the site designer and user.

Håkon's proposal was presented at the "Mosaic and the Web" conference in Chicago, Illinois in 1994, and again with Bert Bos in 1995. Around this time, the World Wide Web Consortium was being established; the W3C took an interest in the development of CSS, and it organized a workshop toward that end chaired by Steven Pemberton. This resulted in W3C adding work on CSS to the deliverables of the HTML editorial review board (ERB). Håkon and Bert were the primary technical staff on this aspect of the project, with additional members, including Thomas Reardon of Microsoft, participating as well. By the end of 1996, CSS was ready to become official, and the CSS level 1 Recommendation was published in December.

Development of HTML, CSS, and the DOM had all been taking place in one group, the HTML Editorial Review Board (ERB). Early in 1997, the ERB was split into three working groups: HTML Working group, chaired by Dan Connolly of W3C, DOM Working group, chaired by Lauren Wood of SoftQuad, and CSS Working group, chaired by Chris Lilley of W3C.

The CSS Working Group began tackling issues that had not been addressed with CSS level 1, resulting in the creation of CSS level 2 on November 4, 1997. It was published as a W3C Recommendation on May 12, 1998. CSS level 3, which was started in 1998, is still under development as of 2006.

In 2005 the CSS Working Groups decided to enforce the requirements for standards more strictly. This meant that already published standards like CSS 2.1, CSS 3 Selectors and CSS 3 Text were pulled back from Candidate Recommendation to Working Draft level.

Difficulty with adoption
Although the CSS1 specification was completed in 1996 and Microsoft's Internet Explorer 3 was released in that year featuring some limited support for CSS, it would be more than three years before any web browser achieved near-full implementation of the specification. Internet Explorer 5.0 for the Macintosh, shipped in March of 2000, was the first browser to have full (better than 99 percent) CSS1 support, surpassing Opera, which had been the leader since its introduction of CSS support fifteen months earlier. Other browsers followed soon afterwards, and many of them additionally implemented parts of CSS2. As of July 2006, no browser has fully implemented CSS2, with implementation levels varying (see Comparison of layout engines (CSS)). Although the exact levels of conformance are not easy to judge, it is generally accepted that Internet Explorer has the worst CSS implementation of all modern browsers (excluding user agents which do not implement CSS, e.g., Lynx).

Even though early browsers such as Internet Explorer 3 and 4, and Netscape 4.x had support for CSS, it was typically incomplete and afflicted with serious bugs. This was a serious obstacle for the adoption of CSS.

When later 'version 5' browsers began to offer a fairly full implementation of CSS, they were still incorrect in certain areas and were fraught with inconsistencies, bugs and other quirks. The proliferation of such CSS-related inconsistencies and even the variation in feature support has made it difficult for designers to achieve a consistent appearance across platforms. Some authors commonly resort to using CSS hacks, workarounds, and CSS filters in order to obtain consistent results across web browsers and platforms.

A 'CSS filter' is a coding technique that aims to effectively hide or show parts of the CSS to different browsers, either by exploiting CSS-handling quirks or bugs in the browser, or by taking advantage of lack of support for parts of the CSS specifications. Using CSS filters, some designers have gone as far as delivering entirely different CSS to certain browsers in order to ensure that designs are rendered as expected. Because very early web browsers were either completely incapable of handling CSS, or render CSS very poorly, designers today often routinely use CSS filters that completely prevent these browsers from accessing any of the CSS.

An example of a well-known CSS browser bug is the Internet Explorer box model bug, where box widths are interpreted incorrectly in several versions of the browser, resulting in blocks which are too narrow when viewed in Internet Explorer, but correct in standards-compliant browsers. The bug can be avoided in Internet Explorer 6 by using the correct doctype in (X)HTML documents. CSS hacks and filters are used to compensate for bugs such as this, just one of hundreds of CSS bugs that have been documented in various versions of Internet Explorer, Netscape, Mozilla, and Opera.

Even when the availability of CSS-capable browsers made CSS a viable technology, the adoption of CSS was still held back by designers' struggles with browsers' incorrect CSS implementation and patchy CSS support. Even today, these problems continue to make the business of CSS design more complex and costly than it should be, and cross-browser testing remains a necessity. Other reasons for continuing non-adoption of CSS are: its perceived complexity, authors' lack of familiarity with CSS syntax and required techniques, poor support from authoring tools, the risks posed by inconsistency between browsers and the increased costs of testing.

Currently there is strong competition between Mozilla's Gecko layout engine, Opera's Presto layout engine, and the KHTML engine used in both Apple's Safari and KDE's Konqueror browsers - each of them is leading in different aspects of CSS. As of 2006, Internet Explorer remains the worst at rendering CSS as judged by World Wide Web Consortium standards ( as linked from ).

Problems with browsers' patchy adoption of CSS along with errata in the original specification led the W3C to revise the CSS2 standard into CSS2.1, which may be regarded as something nearer to a working snapshot of current CSS support in HTML browsers. Some CSS2 properties which no browser had successfully implemented were dropped, and in a few cases, defined behaviours were changed to bring the standard into line with the predominant existing implementations. CSS2.1 became a Candidate Recommendation on February 25, 2004; but was pulled back to Working Draft status on June 13, 2005 to fix various issues (in some cases, to match more closely to browser implementation).

Internet media type text/css
Internet media type (MIME type) text/css is registered for use with CSS by RFC 2318 (March 1998).

As of 2006 some older web servers are still configured to serve documents with the filename extension .css as mime type application/x-pointplus. This is because the Net-Scene company was selling PointPlus Maker to convert PowerPoint files into Compact Slide Show files (using the .css extension) and web servers were configured to signal to client browsers that these .css files were x-pointplus media type. Since the plugin was listed in the directory for Netscape Navigator 3.0, the popular Netscape Enterprise Server was distributed with this mapping pre-configured. When reading external style sheets some web browsers try to compensate for the misconfigured web servers by treating the PointPlus media type as a text/css media type instead, but some (notably Firefox) comply with the media type and will not render the external CSS file as a style sheet.

Use of CSS
Prior to CSS, nearly all of the presentational attributes of HTML documents were contained within the HTML markup; all font colors, background styles, element alignments, borders and sizes had to be explicitly described, often repeatedly, within the HTML. CSS allows authors to move much of that information to a separate stylesheet resulting in considerably simpler HTML markup.

Headings (h1 elements), sub-headings (h2), sub-sub-headings (h3) etc. are defined structurally using HTML. In print and on the screen, choice of font, size, color and emphasis for these elements is presentational.

Prior to CSS, document authors who wanted to assign such typographic characteristics to, say, all h2 headings had to use the HTML font and other presentational elements for each occurrence of that heading type. A heading to be centred on the page in italic, red, Times New Roman might be written:

< h2 align="center">
  < font color="red" size="+4" face="Times New Roman, serif">
    < i>Usage of CSS
  < /font>
< /h2>
The additional presentational markup in the HTML made documents more complex, and generally more difficult to maintain. To render all h2 tags in this manner, the markup had to be repeated for each heading. Sometimes people do not want all of their elements to look the the same so they may do something like :

h2 .red {
 color: red
}
As this only styles the sub-heading is they are declared as so: < h2 class="red">< /h2> With CSS, the h2 and other elements structure the document, while the style sheet defines presentational characteristics. The above might be written:

< h2>Usage of CSS While the following block in an accompanying style sheet defines the same style for all default h2 headings across the web site:
h2 {
  text-align: center;
  color: red;
  font: italic large "Times New Roman", serif;
}
Thus, presentation is separated from structure. In print, CSS can define color, font, text alignment, size, borders, spacing, layout and many other typographic characteristics. It can do so independently for on-screen and printed views. CSS also defines non-visual styles such as the speed and emphasis with which text is read out by aural text readers. The W3C now considers the advantages of CSS for defining all aspects of the presentation of HTML pages to be superior to other methods. It has therefore deprecated the use of all the original presentational HTML markup.

CSS style information can be either attached as a separate document or embedded in the HTML document. Multiple style sheets can be imported, and alternative style sheets can be specified so that the user can choose between them. Different styles can be applied depending on the output device being used as in the screen version being quite different to the printed version so that authors can tailor the presentation appropriately for each medium.

One of the goals of CSS is also to allow users a greater degree of control over presentation; those who find the red italic headings difficult to read may apply other style sheets to the document. Depending on their browser and the web site, a user may choose from various stylesheets provided by the designers, may remove all added style and view the site using their browser's default styling or may perhaps override just the red italic heading style without altering other attributes.

See also presentational markup, which gives example CSS code, along with the deprecated tags.

Example of an XHTML document utilizing CSS
< ?xml version="1.0" encoding="UTF-8"?>
< !DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
< html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  < head>
    < title>XHTML & CSS
    < style type="text/css">
      body {
        background: #fff;
        color: #000;
      }
      h1, h2 {
        font-style: italic;
        font-weight: bold;
        color: blue;
      }
    < /style>
  < /head>
  < body>
    

This will appear in bold blue italics

Normal text.

< h2 style="color: red; background: green;"> This will appear in bold red italics on a green background; the style for h2 defined above is partly overridden. < /h2> < p>Normal text.

< h2>This will appear in bold blue italics < p>Normal text.

< /body> < /html>
Example of a user style sheet
File highlightheaders.css containing:
h1 {color: white; background: orange !important; }
h2 {color: white; background: green !important; }
Such a file is stored locally and is applicable if that has been specified in the browser options. "!important" means that it prevails over the author specifications.

Example of applying CSS to 'plain' XML
This example XML file, styled by the CSS stylesheet below, seen in Mozilla Firefox.An XML file containing the following - note the xml-stylesheet processing instruction:

< ?xml version="1.0" encoding="UTF-8"?> < ?xml-stylesheet type="text/css" href="css.css"?> < schedule> < date>Tuesday 20 June < programme> < starts>6:00 < title>News With Michael Smith and Fiona Tolstoy. Followed by Weather with Malcolm Stott. < /programme> < programme> < starts>6:30 < title>Regional news update Local news for your area. < /programme> < programme> < starts>7:00 < title>Unlikely suspect Whimsical romantic crime drama starring Janet Hawthorne and Percy Trumpp. < /programme> < /schedule> And a separate file called css.css (in the same folder in this case):
@ media screen {
  schedule {
    display: block;
    margin: 10px;
    width: 300px;
  }
  date {
    display: block;
    padding: 0.3em;
    font: bold x-large sans-serif;
    color: white;
    background-color: #C6C;
  }
  programme {
    display: block;
    font: normal medium sans-serif;
  }
  programme > * { /* All children of programme elements */
    font-weight: bold;
    font-size: large;
  }
  title {
    font-style: italic;
  }
}
Note the definition of the display property in some cases, in other cases this defaults to 'inline'. Setting this is seldom necessary when styling HTML or XHTML, where such properties are predefined.

CSS limitations
Most problems attributed to CSS are actually results of browser bugs or lack of support for CSS features. The most serious offender among current browsers is Microsoft Internet Explorer, whose older versions not only lacked many CSS 2.1 properties, but more significantly, misinterpreted a significant number of important properties, such as "width", "height", and "float".

However, current CSS specifications do have some genuine shortcomings.

Selectors are unable to ascend
CSS offers no way to select a parent or ancestor of element that satisfies certain criteria. A more advanced selector scheme (such as XPath) would enable more sophisticated stylesheets. However, the major reasons for the CSS Working Group rejecting proposals for parent selectors are related to browser performance and incremental rendering issues.
One block declaration cannot explicitly inherit from another
Inheritance of styles is performed by the browser based on the containment hierarchy of DOM elements and the specificity of the rule selectors, as suggested by the section 6.4.1 of the CSS2 specification . Only the user of the blocks can refer to them by including class names into the class attribute of a DOM element.
Vertical control limitations
While horizontal placement of elements is generally easy to control, vertical placement is frequently unintuitive, convoluted, or impossible. Simple tasks, such as centering an element vertically or getting a footer to be placed no higher than bottom of viewport, either require complicated and unintuitive style rules, or simple but widely unsupported rules.
Absence of expressions
There is currently no ability to specify property values as simple expressions (such as margin-left: 10% - 3em + 4px;). However, work on a calc() value to address this limitation has been discussed by the CSS WG.
Lack of orthogonality
Multiple properties often end up doing the same job. For instance, position, display and float specify the placement model, and most of the time they cannot be combined meaningfully. A display: table-cell element cannot be floated or given position: relative, and an element with float: left should not react to changes of display.
Margin collapsing
Margin collapsing is, while well-documented and useful, also complicated and is frequently not expected by authors, and no simple side-effect-free way is available to control it.
Float containment
CSS does not explicitly offer any property that would force an element to contain floats. Multiple properties offer this functionality as a side effect, but none of them are completely appropriate in all situations. Generally, position: relative does solve this, but floats should be used and tested carefully.
Lack of multiple backgrounds per element
Highly graphical designs require several background images for every element, and CSS can support only one. Therefore, developers have to choose between adding redundant wrappers around document elements, or dropping the visual effect. This is partially addressed in the working draft of the CSS3 backgrounds module , which is already supported in Safari and Konqueror.
Control of XHTML Element Shapes
CSS currently only offers box shapes, that means rectangles and 90 degree angles. Everyone attempting rounded corners or other shapes must resort to non-semantic XHTML markup.
Standard Ordering of Declarations and Property Declarations
Current CSS accepts property declarations in any order, though usually the last occurrence of a property declaration for one selector will take precedence. Also ordering of property declarations such as size, location, url, which side of the element, etc... can lead to confusion.
Complicated Precedence Rules
Rules of selector precedence are complicated and the !important directive further complicates it by mixing the precedence into the property declarations.
Lack of Variables
CSS contains no variables. Variables would allow naming colors or entire sets of declarations thus enabling re-use and reducing file size. Currently, you must make a comma separated list of selectors to apply the same declarations to multiple selectors. It could be easier to define a list of selectors and define a list of declarations. Variables could also make colors listed in declarations more human-readable than hexadecimal or RGB values, thus speeding CSS development time.
Weaknesses in Pseudo-Classes and Pseudo-Elements
These have vague spheres of existence and perhaps could be elevated to classes or demoted to properties. Sometimes the order of the appearance in the style sheet determines functionality implicitly.
Lack of column declaration
While completely doable in current CSS columns are complex and CSS is would be very easy to make a declaration for a webpage to have a 2, 3 or 4 or even more column layout. Now the process must be done with floats which often are rendered erratic by different browsers, different computer screen shapes, and different ratios set on standard monitors. A simple column declaration, if added to CSS would limit the variation.


W3C recommendation
The first CSS specification to become an official W3C Recommendation is CSS level 1, published in December 1996. Among its capabilities are support for:


Font properties such as typeface and emphasis
Color of text, backgrounds, and other elements
Text attributes such as spacing between words, letters, and lines of text
Alignment of text, images, tables and other elements
Margin, border, padding, and positioning for most elements
Unique identification and generic classification of groups of attributes
The W3C maintains the CSS1 Recommendation.

CSS level 2 was developed by the W3C and published as a Recommendation in May 1998. A superset of CSS1, CSS2 includes a number of new capabilities like absolute, relative, and fixed positioning of elements, the concept of media types, support for aural style sheets and bidirectional text, and new font properties such as shadows. The W3C maintains the CSS2 Recommendation.


CSS level 2 revision 1 or CSS 2.1 fixes errors in CSS2, removes poorly-supported features and adds already-implemented browser extensions to the specification. While it was a Candidate Recommendation for several months, on 15 June 2005 it was reverted to a working draft for further review.

CSS level 3 is currently under development. The W3C maintains a CSS3 progress report. As with the evolving XHTML specification, CSS3 is modularized and will consist of several separate Recommendations. An Introduction to CSS3 roadmap will be the starting point