Cascading Style Sheets

Cascading Style Sheets (CSS) is a language that is used to describe the stylistic presentation of a structured document written in HTML or XML. The CSS specification is maintained by the World Wide Web Consortium (W3C).

Table of contents
1 Overview
2 History of CSS
3 Difficulty with adoption
4 Usage of CSS
5 Recommendations
6 References
7 External links

Overview

CSS is predominantly used by web page authors to define colors, fonts, layout, and other document characteristics. It is designed primarily to enable the separation of document structure (written in HTML or a related language) from document presentation (written in CSS). This separation provides a number of benefits, including improved content accessibility, greater flexibility and control in the specification of presentational characteristics, and reduced complexity of the structural content. CSS is capable of specifying auditory characteristics and other alternative rendering methods, in addition to its visual formatting capabilities.

Advantages of using CSS include:

  • Presentation information for an entire website or collection of pages resides in one place, and can be updated quickly and easily
  • Different users can have different style sheets: large print and text readers for example. Web browsers allow users to specify their own local style sheet to apply to a remote site.
  • The HTML code is reduced in size and complexity, since it does not need to contain any presentational markup

CSS has a syntax that is relatively simpler than that of HTML, and uses a number of English keywords to specify the names of various style properties. Here is a simple example of what CSS code looks like:

p { font-size: 110%; font-family: Garamond, serif; }
h2 { color: red; background: white; }
.highlight { color: red; background: yellow; font-weight: bold; }

Here, the HTML elements p (paragraph) and h2 (level two heading) are being assigned stylistic attributes. The paragraph element will be rendered in a font size ten per cent larger than its parent, in the Garamond font or, if Garamond is unavailable, a generic serif font. The level two heading element will be rendered in red, on a white background. The third descriptor shown here defines a CSS class, which can be assigned to any HTML element by using the class attribute. For example:

This paragraph will be rendered in red and bold, with a yellow background.

The CSS descriptors given above can be included within the HTML document, or imported separately. This capability gives CSS much of its flexibility and power. Additionally, CSS can be used with XHTML, XML, or in fact any structured document format which is properly implemented in an associated user agent or browser.

History of CSS

Style sheets have been around in one form or another since the beginnings of HTML in the early 1990s. Various browsers included their own style language which could be used to customize the appearance of web documents. Originally, style sheets were targeted towards the end-user; early revisions of HTML did not provide many facilities for presentational attributes, so it was often up to the user to decide how web documents would appear.

As the HTML language grew, however, it came to encompass a wider variety of stylistic capabilities to meet the demands of web developers. With these capabilities, style sheets became less important, and an external language for the purposes of defining style attributes was not widely accepted until the development of CSS.

The concept of Cascading Style Sheets was originally proposed in 1994 by Håkon Wium Lie. Bert Bos was at the time working on a browser called Argo which used its own style sheets; the two decided to work together to develop CSS.

A number of other style sheet languages had already been proposed, but CSS was the first to incorporate the idea of "cascading" -- the capability for a document's style to be inherited from more than one "style sheet." This permitted a user's preferred style to override the site author's specified style in some areas, while inheriting, or "cascading" the author's style in other areas. The capability to cascade in this way permits both users and site authors added flexibility and control; it permitted a mixture of stylistic preferences.

Håkon's proposal was presented at the "Mosaic and the Web" conference in Chicago 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 organized a workshop toward that end. Håkon and Bert were the primary technical staff on the project, with additional members, including Thomas Reardon of Microsoft, participating as well. By the end of 1996, CSS was nearly ready to become official. The CSS level 1 Recommendation was published in December 1996.

Early in 1997, CSS was assigned its own working group within the W3C, chaired by Chris Lilley. The group began tackling issues that had not been addressed with CSS level 1, resulting in the creation of CSS level 2, which was published as an official Recommendation in May 1998. CSS level 3 is still under development as of 2003.

Difficulty with adoption

Although the CSS1 specification was completed in 1996, it would be more than three years before any web browser achieved full implementation of the specification. Microsoft Internet Explorer 5.0 for the Macintosh shipped in March of 2000, the first browser to have full (better than 99 per cent) CSS1 support. Other browsers followed soon afterwards, and many of them additionally implemented parts of CSS2, though as of 2003, no browser has achieved full implementation of CSS2.

Even the browsers that did achieve full implementation often did so with a degree of difficulty; many implementations of CSS are fraught with inconsistencies, bugs and other quirks. Authors have commonly had to utilize hacks and workarounds in order to obtain consistent results across browsers and platforms. One of the most well-known CSS bugs is the Internet Explorer box model bug; box widths are interpreted incorrectly in several versions of the browser, resulting in blocks which appear as expected in most browsers, but are too narrow when viewed in Internet Explorer. The bug can be avoided, but not without some cost in terms of functionality.

This is just one of hundreds of other CSS bugs that have been documented in various versions of Internet Explorer, Netscape, Mozilla, and Opera, many of which have severe detrimental effects on the legibility of the document; the proliferation of such bugs in CSS implementations has made it difficult for designers to achieve a consistent appearance across platforms. However, currently, Mozilla's Gecko layout engine is the best at rendering CSS, while Internet Explorer remains the worst at rendering CSS by standards set down by World Wide Web Consortium.

Usage of CSS

CSS is designed primarily to separate presentation from content. Authors who use CSS commonly do so towards this end. Prior to CSS, nearly all of the presentational attributes of an HTML document were contained within the HTML code; all font colors, background styles, alignment specification, boxes, borders, and sizes had to be explicitly described, often repeatedly, in the midst of the HTML code. CSS allows authors to extract much of that information, resulting in considerably simpler HTML code, supplemented by an auxiliary style sheet written in the language of CSS. The structure and semantic markup is restricted to the HTML code, while the presentational markup is restricted to the CSS code.

For example, the HTML element h2 specifies that the text contained within it is a level two heading. It has a lower level of importance than h1 headings, but a higher level of importance than h3 headings. This aspect of the h2 element is structural.

Customarily, headings are rendered in decreasing order of size, with h1 as the largest, because larger headings are usually interpreted to have greater importance than smaller ones. Headings are also typically rendered in a bold font in order to give them additional emphasis. The h2 element may be rendered in bold face, and in a font larger than h3 but smaller than h1. This aspect of the h2 element is presentational.

Prior to CSS, document authors who wanted to assign a specific color, font, size, or other characteristic to all h2 headings had to utilize the HTML font element, or other presentational markup, in addition to the h2 element, since h2 is strictly a structural element. A heading to be rendered in an italic red font on a white background might be written:

Usage of CSS

The additional presentational markup in the HTML made documents more complex, and generally more difficult to maintain; if all level two headings were to be rendered in this style, the markup had to be used for each one separately. Furthermore, a person reading the page with a web browser loses control over the display of the text; if they would rather see the heading in blue, they cannot easily do so, as the site author has explicitly defined the heading color to be used.

With CSS, the h2 element can be used to give the text structure, while the style sheet gives the text its presentational characteristics. The above might be written:

Usage of CSS

With an accompanying style sheet to define the red italic style and white background:

h2 { color: red; background: white; font-style: italic; }

Thus, presentation is separated from content. (It is because of the advantages offered by CSS that the W3C now considers many of the presentational elements and attributes in HTML to be deprecated). The HTML describes only structural aspects, and the CSS describes all presentational aspects. CSS can define color, font, text alignment, size, and also non-visual formatting such as the speed with which a page is read out loud in text readers.

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 what media is being used. For example, the screen version may be quite different from the printed version. This allows authors to tailor the presentation appropriately for each kind of media. Also, one of the goals of CSS is to allow users a greater degree of control over presentation; users who find the red italic headings difficult to read may apply their own style sheet to the document, and the presentational characteristics will be "cascaded"; the user may override just the red italic heading style, and the remaining attributes will stay the way they are.

Recommendations

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

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, among them the 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 3 is currently under development. The W3C maintains a CSS3 progress report.

References

External links

Hacks and workarounds



In the News

Genetically Altered Cells May Help Artificial Skin Fight Infection
Cincinnati burn researchers have created genetically modified skin cells that, when added to cultured skin substitutes, may help fight off potentially lethal infections in patients with severe burns. Led by University of Cincinnati scientists, the team found that skin cells that were genetically altered to produce higher levels of a protein known as human beta defensin 4 killed more bacteria than normal skin cells.

Keyed Up: RFID in the Gym
The Wellness Key, an electronic personal-fitness assistant from Technogym, promises to push your workout in all the right directions. But what if all of the nagging and drubbing just makes you want to hit the showers? By Nicole Martinelli.

Risky Surgery Not Always Necessary To Treat Cervical Disease
Revolutionary advancements in the treatment options for diseases associated with human papillomavirus (HPV) now include nonsurgical options such as chemoprevention and vaccines. A review of these methods is published in the latest issue of the International Journal of Gynecological Cancer.

Roast Chestnuts
Simple recipe for this wintertime treat, which is typically sold on the street. Also includes links to other recipes featuring chestnuts, such as marrons glacés, flambéed brandy chestnuts, and chestnut, leek, and mushroom tartlets. From the British Broadcasting Corporation (BBC).

Scientists Make Explosive Discovery About Nature Of Supernovae
North Carolina State University astrophysicists have answered a long-standing question about the nature of one of our galaxy's most famous supernova explosions, discovering a new class of supernova in the process.

Abby Casts Lustful Eye on U.S.
Fed up with British men, who she says are too passive and can only relate to women when drunk, notorious sex blogger Abby Lee wants to give the Yanks a try. She's weighing a move to New York, which will no doubt spur sales of her lusty memoir, already a best seller in Old Blighty.

[Ironic] An Italian pensioner committed suicide after his wife fell in
Recalling the end of Romeo and Juliet, the 70-year-old man, Ettore, who had sat by his wife's bedside for four months after she slipped into a coma following a heart attack, finally gave up hope and gassed himself in the garage of his family home.Less than a day later, his wife, Rossana, woke up in her hospital bed in Padua and immediately asked for him.

[Cool] Florida's Three Major Schools All Lose For the First Time Since
For the first time since 1978, the Gators, 'Noles and 'Canes lost on the same day.

Let's Party: A Guide to Drug-free Parties for 5th-8th Graders
"This website is a resource for parents to help their fifth through eighth grade children as they begin to host and attend parties."Provides suggestions for parents for party planning, rules, invitations, curfews, and more. Includes party game and food ideas. Also available in Spanish. From the University of Illinois Extension.

Specific Statin Significantly Reduces Alzheimer's And Parkinson's Dise
Researchers have found that the statin, simvastatin, reduces the incidence of Alzheimer's disease and Parkinson's disease by almost 50 percent. This is the first study to suggest that statins might reduce the incidence of Parkinson's disease.




MP3 Music Downloads

Preview songs, Download Free Music,Burn CDs at ITunes.com
iTunes_RGB_9mm

 


Google




InformationQuickFind.com - Find Information Fast

Links | Privacy Policy | News |