Jump to content

CSS

From Wikipedia, the free encyclopedia
(Redirected fromCSS 3)
Cascading Style Sheets (CSS)
The official logo of the latest version,CSS 3
Example of CSSsource code
Filename extension
.css
Internet media type
text/css
Uniform Type Identifier (UTI)public.css
Developed byWorld Wide Web Consortium(W3C)
Initial release17 December 1996;27 years ago(1996-12-17)
Latest release
CSS 3 is being developed as multiple separate modules.Regular snapshotssummarize their status.
7 December 2023;8 months ago(2023-12-07)
Type of formatStyle sheet language
Container forStyle rules forHTML elements(tags)
Contained byHTML Documents
Open format?Yes
Websitew3.org/TR/CSS/#css

Cascading Style Sheets(CSS) is astyle sheet languageused for specifying thepresentationand styling of a document written in amarkup languagesuch asHTMLorXML(including XML dialects such asSVG,MathMLorXHTML).[1]CSS is a cornerstone technology of theWorld Wide Web,alongside HTML andJavaScript.[2]

CSS is designed to enable theseparation of content and presentation,includinglayout,colors,andfonts.[3]This separation can improve contentaccessibility,since the content can be written without concern for its presentation; provide more flexibility and control in the specification of presentation characteristics; enable multipleweb pagesto share formatting by specifying the relevant CSS in a separate.css file, which reduces complexity and repetition in the structural content; and enable the.css file to becachedto improve the page load speed between the pages that share the file and its formatting.

Separation of formatting and content also makes it feasible to present the same markup page in different styles for different rendering methods, such as on-screen, in print, by voice (via speech-based browser orscreen reader), and onBraille-basedtactile devices. CSS also has rules for alternate formatting if the content is accessed on amobile device.[4]

The namecascadingcomes from the specified priority scheme to determine which declaration applies if more than one declaration of a property match a particular element. This cascading priority scheme is predictable.

The CSS specifications are maintained by theWorld Wide Web Consortium(W3C). Internet media type (MIME type)text/cssis registered for use with CSS by RFC 2318 (March 1998). The W3C operates a freeCSS validation servicefor CSS documents.[5]

In addition to HTML, other markup languages support the use of CSS includingXHTML,plain XML,SVG,andXUL.CSS is also used in theGTKwidget toolkit.

Syntax

[edit]

CSS has a simplesyntaxand uses a number of English keywords to specify the names of various style properties.

Style sheet

[edit]

A style sheet consists of a list ofrules.Each rule or rule-set consists of one or moreselectors,and adeclaration block.

Selector

[edit]

In CSS,selectorsdeclare which part of the markup a style applies to by matching tags and attributes in the markup itself.

Selector types

[edit]

Selectors may apply to the following:

  • allelementsof a specific type, e.g. the second-level headersh2
  • elements specified byattribute,in particular:
    • id:an identifier unique within the document, denoted in the selector language by ahashprefix e.g.#id
    • class:an identifier that can annotate multiple elements in a document, denoted by adotprefix e.g..classname(the phrase "CSS class", although sometimes used, is a misnomer, as element classes—specified with theHTML class attribute—is a markup feature that is distinct from browsers' CSS subsystem and the related W3C/WHATWG standards work on document styles; seeRDFandmicroformatsfor the origins of the "class" system of the Web content model)
  • elements depending on how they are placed relative to others in thedocument tree.

Classes and IDs are case-sensitive, start with letters, and can include Alpha numeric characters, hyphens, and underscores. A class may apply to any number of instances of any element. An ID may only be applied to a single element.

Pseudo-classes

[edit]

Pseudo-classesare used in CSS selectors to permit formatting based on information that is not contained in the document tree.

One example of a widely used pseudo-class is:hover,which identifies content only when the user "points to" the visible element, usually by holding the mouse cursor over it. It is appended to a selector as ina:hoveror#elementid:hover.

A pseudo-class classifies document elements, such as:linkor:visited,whereas apseudo-elementmakes a selection that may consist of partial elements, such as::first-lineor::first-letter.[6]Note the distinction between the double-colon notation used for pseudo-elements and the single-colon notation used for pseudo-classes.

Combinators

[edit]

Multiple simple selectors may be joined using combinators to specify elements by location, element type, id, class, or any combination thereof.[7]The order of the selectors is important. For example,div.myClass{color:red;}applies to all elements of class myClass that are inside div elements, whereas.myClassdiv{color:red;}applies to all div elements that are inside elements of class myClass. This is not to be confused with concatenated identifiers such asdiv.myClass{color:red;}which applies to div elements of class myClass.

Summary of selector syntax

[edit]

The following table provides a summary of selector syntax indicating usage and the version of CSS that introduced it.[8]

Pattern Matches First defined
in CSS level
E an element of type E 1
E:link an E element that is the source anchor of a hyperlink whose target is either not yet visited (:link) or already visited (:visited) 1
E:active an E element during certain user actions 1
E::first-line the first formatted line of an E element 1
E::first-letter the first formatted letter of an E element 1
.c all elements with class= "c" 1
#myid the element with id= "myid" 1
E.warning an E element whose class is "warning" (the document language specifies how class is determined) 1
E#myid an E element with ID equal to "myid" 1
.c#myid the element with class= "c" and ID equal to "myid" 1
EF an F element descendant of an E element 1
* any element 2
E[foo] an E element with a "foo" attribute 2
E[foo="bar"] an E element whose "foo" attribute value is exactly equal to "bar" 2
E[foo~="bar"] an E element whose "foo" attribute value is a list of whitespace-separated values, one of which is exactly equal to "bar" 2
E[foo|="en"] an E element whose "foo" attribute has a hyphen-separated list of values beginning (from the left) with "en" 2
E:first-child an E element, first child of its parent 2
E:lang(fr) an element of type E in language "fr" (the document language specifies how language is determined) 2
E::before generated content before an E element's content 2
E::after generated content after an E element's content 2
E>F an F element child of an E element 2
E+F an F element immediately preceded by an E element 2
E[foo^="bar"] an E element whose "foo" attribute value begins exactly with the string "bar" 3
E[foo$="bar"] an E element whose "foo" attribute value ends exactly with the string "bar" 3
E[foo*="bar"] an E element whose "foo" attribute value contains the substring "bar" 3
E:root an E element, root of the document 3
E:nth-child(n) an E element, the n-th child of its parent 3
E:nth-last-child(n) an E element, the n-th child of its parent, counting from the last one 3
E:nth-of-type(n) an E element, the n-th sibling of its type 3
E:nth-last-of-type(n) an E element, the n-th sibling of its type, counting from the last one 3
E:last-child an E element, last child of its parent 3
E:first-of-type an E element, first sibling of its type 3
E:last-of-type an E element, last sibling of its type 3
E:only-child an E element, only child of its parent 3
E:only-of-type an E element, only sibling of its type 3
E:empty an E element that has no children (including text nodes) 3
E:target an E element being the target of the referring URI 3
E:enabled a user interface element E that is enabled 3
E:disabled a user interface element E that is disabled 3
E:checked a user interface element E that is checked (for instance a radio button or checkbox) 3
E:not(s) an E element that does not match simple selector s 3
E~F an F element preceded by an E element 3

Declaration block

[edit]

A declaration block consists of a pair of braces ({}) enclosing a semicolon-separated list ofdeclarations.[9]

Declaration

[edit]

Each declaration itself consists of aproperty,a colon (:), and avalue.Optional white-space may be around the declaration block, declarations, colons, and semi-colons for readability.[10]

Properties

[edit]

Properties are specified in the CSS standard. Each property has a set of possible values. Some properties can affect any type of element, and others apply only to particular groups of elements.[11][12]

Values

[edit]

Values may be keywords, such as "center" or "inherit", or numerical values, such as200px(200 pixels),50vw(50 percent of the viewport width) or80%(80 percent of the parent element's width).

Color values can be specified with keywords (e.g. "red"), hexadecimal values (e.g.#FF0000,also abbreviated as#F00), RGB values on a 0 to 255 scale (e.g.rgb(255,0,0)), RGBA values that specify both color and Alpha transparency (e.g.rgba(255,0,0,0.8)), or HSL or HSLA values (e.g.hsl(0100%50%),hsl(0100%50%/0.8)).[13]

Non-zero numeric values representing linear measures must include a length unit, which is either an Alpha betic code or abbreviation, as in200pxor50vw;or a percentage sign, as in80%.Some units –cm(centimetre);in(inch);mm(millimetre);pc(pica); andpt(point) – areabsolute,which means that the rendered dimension does not depend upon the structure of the page; others –em(em);ex(ex) andpx(pixel)[clarification needed]– arerelative,which means that factors such as the font size of a parent element can affect the rendered measurement. These eight units were a feature of CSS 1[14]and retained in all subsequent revisions. The proposed CSS Values and Units Module Level 3 will, if adopted as a W3C Recommendation, provide seven further length units:ch;Q;rem;vh;vmax;vmin;andvw.[15]

Use

[edit]

Before CSS, nearly all 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 lets authors move much of that information to another file, the style sheet, resulting in considerably simpler HTML. And additionally, as more and more devices are able to access responsive web pages, different screen sizes and layouts begin to appear. Customizing a website for each device size is costly and increasingly difficult. The modular nature of CSS means that styles can be reused in different parts of a site or even across sites, promoting consistency and efficiency.

For example, headings (h1elements), sub-headings (h2), sub-sub-headings (h3), etc., are defined structurally using HTML. In print and on the screen, choice offont,size,colorandemphasisfor these elements ispresentational.

Before CSS, document authors who wanted to assign suchtypographiccharacteristics to, say, allh2headings had to repeat HTML presentational markup for each occurrence of that heading type. This made documents more complex, larger, and more error-prone and difficult to maintain. CSS allows the separation of presentation from structure. CSS can define color, font, text alignment, size, borders, spacing, layout and many other typographic characteristics, and can do so independently for on-screen and printed views. CSS also defines non-visual styles, such as reading speed and emphasis for aural text readers. TheW3Chas nowdeprecatedthe use of all presentational HTML markup.[16]

For example, under pre-CSS HTML, a heading element defined with red text would be written as:

<h1><fontcolor="red">Chapter 1.</font></h1>

Using CSS, the same element can be coded using style properties instead of HTML presentational attributes:

<h1style="color: red;">Chapter 1.</h1>

The advantages of this may not be immediately clear but the power of CSS becomes more apparent when the style properties are placed in an internal style element or, even better, an external CSS file. For example, suppose the document contains the style element:

<style>
h1{
color:red;
}
</style>

Allh1elements in the document will then automatically become red without requiring any explicit code. If the author later wanted to makeh1elements blue instead, this could be done by changing the style element to:

<style>
h1{
color:blue;
}
</style>

rather than by laboriously going through the document and changing the color for each individualh1element.

The styles can also be placed in an external CSS file, as described below, and loaded using syntax similar to:

<linkhref="path/to/file.css"rel="stylesheet"type="text/css">

This further decouples the styling from the HTML document and makes it possible to restyle multiple documents by simply editing a shared external CSS file.

Sources

[edit]

CSS, or Cascading Style Sheets, offers a flexible way to style web content, with styles originating from browser defaults, user preferences, or web designers. These styles can be applied inline, within an HTML document, or through external.css files for broader consistency. Not only does this simplify web development by promoting reusability and maintainability, it also improves site performance because styles can be offloaded into dedicated.css files that browsers can cache. Additionally, even if the styles cannot be loaded or are disabled, this separation maintains the accessibility and readability of the content, ensuring that the site is usable for all users, including those with disabilities. Its multi-faceted approach, including considerations for selector specificity, rule order, and media types, ensures that websites are visually coherent and adaptive across different devices and user needs, striking a balance between design intent and user accessibility.

Multiple style sheets

[edit]

Multiple style sheets can be imported. Different styles can be applied depending on the output device being used; for example, the screen version can be quite different from the printed version, so authors can tailor the presentation appropriately for each medium.

Cascading

[edit]

The style sheet with the highest priority controls the content display. Declarations not set in the highest priority source are passed on to a source of lower priority, such as the user agent style. The process is calledcascading.

One of the goals of CSS is to allow users greatercontrol over presentation.Someone who finds red italic headings difficult to read may apply a different style sheet. Depending on the browser and the website, a user may choose from various style sheets provided by the designers, or may remove all added styles, and view the site using the browser's default styling, or may override just the red italic heading style without altering other attributes. Browser extensions likeStylishandStylushave been created to facilitate the management of such user style sheets. In the case of large projects, cascading can be used to determine which style has a higher priority when developers do integrate third-party styles that have conflicting priorities, and to further resolve those conflicts. Additionally, cascading can help create themed designs, which help designers fine-tune aspects of a design without compromising the overall layout.

CSS priority scheme
[edit]
CSS priority scheme (highest to lowest)
Priority CSS source type Description
1 Importance The "!important"annotation overwrites the previous priority types
2 Inline A style applied to an HTML element via HTML "style" attribute
3 Media Type A property definition applies to all media types unless a media-specific CSS is defined
4 User defined Most browsers have the accessibility feature: a user-defined CSS
5 Selector specificity A specific contextual selector (#headingp) overwrites generic definition
6 Rule order Last rule declaration has a higher priority
7 Parent inheritance If a property is not specified, it is inherited from a parent element
8 CSS property definition in HTML document CSS rule or CSS inline style overwrites a default browser value
9 Browser default The lowest priority: browser default value is determined by W3C initial value specifications

Specificity

[edit]

Specificityrefers to the relative weights of various rules.[17]It determines which styles apply to an element when more than one rule could apply. Based on the specification, a simple selector (e.g. H1) has a specificity of 1, class selectors have a specificity of 1,0, and ID selectors have a specificity of 1,0,0. Because the specificity values do not carry over as in the decimal system, commas are used to separate the "digits"[18](a CSS rule having 11 elements and 11 classes would have a specificity of 11,11, not 121).

Thus the selectors of the following rule result in the indicated specificity:

Selectors Specificity
h1{color:white;} 0, 0, 0, 1
pem{color:green;} 0, 0, 0, 2
.grape{color:red;} 0, 0, 1, 0
p.bright{color:blue;} 0, 0, 1, 1
p.brightem.dark{color:yellow;} 0, 0, 2, 2
#id218{color:brown;} 0, 1, 0, 0
style="" 1, 0, 0, 0

Examples

[edit]

Consider this HTML fragment:

<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<style>
#xyz{color:blue;}
</style>
</head>
<body>
<pid="xyz"style="color: green;">To demonstrate specificity</p>
</body>
</html>

In the above example, the declaration in thestyleattribute overrides the one in the<style>element because it has a higher specificity, and thus, the paragraph appears green:

To demonstrate specificity

Inheritance

[edit]

Inheritance is a key feature in CSS; it relies on the ancestor-descendant relationship to operate. Inheritance is the mechanism by which properties are applied not only to a specified element but also to its descendants.[17]Inheritance relies on the document tree, which is the hierarchy ofXHTMLelements in a page based on nesting. Descendant elements may inherit CSS property values from any ancestor element enclosing them. In general, descendant elements inherit text-related properties, but their box-related properties are not inherited. Properties that can be inherited are color, font, letter spacing, line-height, list-style, text-align, text-indent, text-transform, visibility, white-space, and word-spacing. Properties that cannot be inherited are background, border, display, float and clear, height, and width, margin, min- and max-height and -width, outline, overflow, padding, position, text-decoration, vertical-align, and z-index.

Inheritance can be used to avoid declaring certain properties over and over again in a style sheet, allowing for shorter CSS.

Inheritance in CSS is not the same asinheritance in class-based programming languages,where it is possible to define class B as "like class A, but with modifications".[19]With CSS, it is possible to style anelementwith "class A, but with modifications". However, it is not possible to define a CSSclassB like that, which could then be used to style multiple elements without having to repeat the modifications.

Example

[edit]

Given the following style sheet:

p{
color:pink;
}

Suppose there is a p element with an emphasizing element (<em>) inside:

<p>
This is to<em>illustrate</em>inheritance
</p>

If no color is assigned to the em element, the emphasized word "illustrate" inherits the color of the parent element, p. The style sheet p has the color pink, hence, the em element is likewise pink:

This is toillustrateinheritance

Whitespace

[edit]

The whitespace between properties and selectors is ignored. This code snippet:

body{overflow:hidden;background:#000000;background-image:url(images/bg.gif);background-repeat:no-repeat;background-position:lefttop;}

is functionally equivalent to this one:

body{
overflow:hidden;
background-color:#000000;
background-image:url(images/bg.gif);
background-repeat:no-repeat;
background-position:lefttop;
}

Indentation

[edit]

One common way to format CSS for readability is to indent each property and give it its own line. In addition to formatting CSS for readability, shorthand properties can be used to write out the code faster, which also gets processed more quickly when being rendered:[20]

body{
overflow:hidden;
background:#000url(images/bg.gif)no-repeatlefttop;
}

Sometimes, multiple property values are indented onto their own line:

@font-face{
font-family:'Comic Sans';
font-size:20px;
src:url('first.example '),
url('second.example '),
url('third.example '),
url('fourth.example ');
}

Positioning

[edit]

CSS 2.1 defines three positioning schemes:

Normal flow
Inlineitems are laid out in the same way as the letters in words in the text, one after the other across the available space until there is no more room, then starting a new line below.Blockitems stack vertically, like paragraphs and like the items in a bulleted list. Normal flow also includes the relative positioning of block or inline items and run-in boxes.
Floats
A floated item is taken out of the normal flow and shifted to the left or right as far as possible in the space available. Other content then flows alongside the floated item.
Absolute positioning
An absolutely positioned item has no place in, and no effect on, the normal flow of other items. It occupies its assigned position in its container independently of other items.[21]

Position property

[edit]

There are five possible values of thepositionproperty. If an item is positioned in any way other thanstatic,then the further propertiestop,bottom,left,andrightare used to specify offsets and positions.The element having position static is not affected by thetop,bottom,leftorrightproperties.

Static
[edit]

The default value places the item in thenormal flow.

Relative
[edit]

The item is placed in thenormal flow,and then shifted or offset from that position. Subsequent flow items are laid out as if the item had not been moved.

Absolute
[edit]

Specifiesabsolute positioning.The element is positioned in relation to its nearest non-static ancestor.

Fixed
[edit]

The item isabsolutely positionedin a fixed position on the screen even as the rest of the document is scrolled[21]

Float and clear

[edit]

Thefloatproperty may have one of three values.Absolutelypositioned orfixeditems cannot be floated. Other elements normally flow around floated items, unless they are prevented from doing so by theirclearproperty.

left
The itemfloatsto the left of the line that it would have appeared in; other items may flow around its right side.
right
The itemfloatsto the right of the line that it would have appeared in; other items may flow around its left side.
clear
Forces the element to appear underneath ('clear') floated elements to the left (clear:left), right (clear:right) or both sides (clear:both).[21][22]

History

[edit]
Håkon Wium Lie,chief technical officer of the Opera Software company and co-creator of the CSS web standards

CSS was first proposed byHåkon Wium Lieon 10 October 1994.[23]At the time, Lie was working withTim Berners-LeeatCERN.[24]Several other style sheet languages for the web were proposed around the same time, and discussions on public mailing lists and insideWorld Wide Web Consortiumresulted in the first W3C CSS Recommendation (CSS1)[25]being released in 1996. In particular, a proposal byBert Boswas influential; he became co-author of CSS1, and is regarded as co-creator of CSS.[26]

Style sheets have existed in one form or another since the beginnings of Standard Generalized Markup Language (SGML) in the 1980s, and CSS was developed to provide style sheets for the web.[27]One requirement for a web style sheet language was for style sheets to come from different sources on the web. Therefore, existing style sheet languages likeDSSSLandFOSIwere not suitable. CSS, on the other hand, let a document's style be influenced by multiple style sheets by way of "cascading" styles.[27]

As HTML grew, it came to encompass a wider variety of stylistic capabilities to meet the demands ofweb developers.This evolution gave the designer more control over site appearance, at the cost of more complex HTML. Variations inweb browserimplementations, such asViolaWWWandWorldWideWeb,[28]made consistent site appearance difficult, and users had less control over how web content was displayed. The browser/editor developed by Tim Berners-Lee had style sheets that were hard-coded into the program. The style sheets could therefore not be linked to documents on the web.[24]Robert Cailliau,also of CERN, wanted to separate the structure from the presentation so that different style sheets could describe different presentation for printing, screen-based presentations, and editors.[28]

Improving web presentation capabilities was a topic of interest to many in the web community and nine different style sheet languages were proposed on the www-style mailing list.[27]Of these nine proposals, two were especially influential on what became CSS: Cascading HTML Style Sheets[23]and Stream-based Style Sheet Proposal (SSP).[26][29]Two browsers served as testbeds for the initial proposals; Lie worked withYves Lafonto implement CSS inDave Raggett'sArenabrowser.[30][31][32]Bert Bos implemented his own SSP proposal in theArgobrowser.[26]Thereafter, Lie and Bos worked together to develop the CSS standard (the 'H' was removed from the name because these style sheets could also be applied to other markup languages besides HTML).[24]

Lie's proposal was presented at the "Mosaic and the Web"conference (later called WWW2) in Chicago, Illinois in 1994, and again with Bert Bos in 1995.[24]Around this time the W3C was already being established and took an interest in the development of CSS. It organized a workshop toward that end chaired bySteven Pemberton.This resulted in W3C adding work on CSS to the deliverables of the HTML editorial review board (ERB). Lie and Bos were the primary technical staff on this aspect of the project, with additional members, includingThomas Reardonof Microsoft, participating as well. In August 1996,Netscape Communication Corporationpresented an alternative style sheet language calledJavaScript Style Sheets(JSSS).[24]The spec was never finished, and is deprecated.[33]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 theDOMhad 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 byDan Connollyof W3C; DOM Working group, chaired by Lauren Wood ofSoftQuad;andCSS Working Group,chaired byChris Lilleyof 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 2014.

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

[edit]

The CSS 1 specification was completed in 1996. Microsoft'sInternet Explorer 3[24]was released that year, featuring some limited support for CSS.IE 4andNetscape 4.xadded more support, but it was typically incomplete and had manybugsthat prevented CSS from being usefully adopted. It was more than three years before any web browser achieved near-full implementation of the specification.Internet Explorer 5.0for theMacintosh,shipped in March 2000, was the first browser to have full (better than 99 percent) CSS 1 support,[34]surpassingOpera,which had been the leader since its introduction of CSS support fifteen months earlier. Other browsers followed soon afterward, and many of them additionally implemented parts of CSS 2.

However, even when later "version 5" web browsers began to offer a fairly full implementation of CSS, they were still incorrect in certain areas. They were fraught with inconsistencies, bugs, and otherquirks.Microsoft Internet Explorer 5. x for Windows,as opposed to the very differentIE for Macintosh,had a flawed implementation of theCSS box model,as compared with the CSS standards. Such inconsistencies and variation in feature support made it difficult for designers to achieve a consistent appearance across browsers andplatformswithout the use ofworkaroundstermedCSS hacks and filters.The IE Windows box model bugs were so serious that, whenInternet Explorer 6was released, Microsoft introduced a backward-compatible mode of CSS interpretation ( "quirks mode") alongside an alternative, corrected" standards mode ". Other non-Microsoft browsers also provided mode-switch capabilities. It, therefore, became necessary for authors ofHTMLfiles to ensure they contained special distinctive"standards-compliant CSS intended" markerto show that the authors intended CSS to be interpreted correctly, in compliance with standards, as opposed to being intended for the now long-obsoleteIE5/Windows browser.Without this marker, web browsers with the "quirks mode" -switching capability will size objects in web pages as IE 5 on Windows would, rather than following CSS standards.

Problems with the patchy adoption of CSS and errata in the original specification led the W3C to revise the CSS 2 standards into CSS 2.1, which moved nearer to a working snapshot of current CSS support in HTML browsers. Some CSS 2 properties that no browser successfully implemented were dropped, and in a few cases, defined behaviors were changed to bring the standard into line with the predominant existing implementations. CSS 2.1 became a Candidate Recommendation on February 25, 2004, but CSS 2.1 was pulled back to Working Draft status on June 13, 2005,[35]and only returned to Candidate Recommendation status on July 19, 2007.[36]

In addition to these problems, the.cssextension was used by a software product used to convertPowerPointfiles into Compact Slide Show files,[37] so some web servers served all.css[38]asMIME typeapplication/x-pointplus[39]rather thantext/css.

Vendor prefixes

[edit]

Individual browser vendors occasionally introduced new parameters ahead of standardization and universalization. To prevent interfering with future implementations, vendors prepended unique names to the parameters, such as-moz-forMozilla Firefox,-webkit-named afterthe browsing engineofApple Safari,-o-forOpera Browserand-ms-forMicrosoft Internet Explorerand early versions ofMicrosoft Edgethat use EdgeHTML.

Occasionally, the parameters with vendor prefixes such as-moz-radial-gradientand-webkit-linear-gradienthave slightly different syntax as compared to their non-vendor-prefix counterparts.[40]

Prefixed properties are rendered obsolete by the time of standardization. Programs are available to automatically add prefixes for older browsers and to point out standardized versions of prefixed parameters. Since prefixes are limited to a small subset of browsers, removing the prefix allows other browsers to see the functionality. An exception is certain obsolete-webkit-prefixed properties, which are so common and persistent on the web that other families of browsers have decided to support them for compatibility.[41]


CSS Snapshot 2021

CSS has various levels and profiles. Each level of CSS builds upon the last, typically adding new features and typically denoted[42]as CSS 1, CSS 2, CSS 3, and CSS 4. 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 CSS 2.

CSS 1

[edit]

The first CSS specification to become an official W3C Recommendation is CSS level 1, published on 17 December 1996.Håkon Wium LieandBert Bosare credited as the original developers.[43][44]Among its capabilities are support for

  • Fontproperties such as typeface and emphasis
  • Color of text, backgrounds, and other elements
  • Text attributes such as spacing between words, letters, and lines of text
  • Alignmentof text, images,tablesand other elements
  • Margin, border, padding, and positioning for most elements
  • Unique identification and generic classification of groups of attributes

The W3C no longer maintains the CSS 1 Recommendation.[45]

CSS 2

[edit]

CSS level 2 specification was developed by the W3C and published as a recommendation in May 1998. A superset of CSS 1, CSS 2 includes a number of new capabilities like absolute, relative, and fixed positioning of elements andz-index,the concept of media types, support for aural style sheets (which were later replaced by the CSS 3 speech modules)[46]and bidirectional text, and new font properties such as shadows.

The W3C no longer maintains the CSS 2 recommendation.[47]

CSS 2.1

[edit]

CSS level 2 revision 1, often referred to as "CSS 2.1", fixes errors in CSS 2, removes poorly supported or not fully interoperable features and adds already implemented browser extensions to the specification. To comply with the W3C Process for standardizing technical specifications, CSS 2.1 went back and forth between Working Draft status and Candidate Recommendation status for many years. CSS 2.1 first became aCandidate Recommendationon 25 February 2004, but it was reverted to a Working Draft on 13 June 2005 for further review. It returned to Candidate Recommendation on 19 July 2007 and then updated twice in 2009. However, because changes and clarifications were made, it again went back to Last Call Working Draft on 7 December 2010.

CSS 2.1 went to Proposed Recommendation on 12 April 2011.[48]After being reviewed by the W3C Advisory Committee, it was finally published as a W3C Recommendation on 7 June 2011.[49]

CSS 2.1 was planned as the first and final revision of level 2—but low-priority work on CSS 2.2 began in 2015.

CSS 3

[edit]

Unlike CSS 2, which is a large single specification defining various features, CSS 3 is divided into several separate documents called "modules". Each module adds new capabilities or extends features defined in CSS 2, preserving backward compatibility. Work on CSS level 3 started around the time of publication of the original CSS 2 recommendation. The earliest CSS 3 drafts were published in June 1999.[50]

Due to the modularization, different modules have different stability and statuses.[51]

Some modules haveCandidate Recommendation(CR) status and are considered moderately stable. AtCRstage, implementations are advised to drop vendor prefixes.[52]

Summary of main module-specifications[53]
Module Specification title Status Date
css3-background CSS Backgrounds and Borders Module Level 3 CandidateRec. Feb 2023
css-box-3 CSS Box Model Module Level 3 Recommendation Apr 2023
css-cascade-3 CSS Cascading and Inheritance Level 3 Recommendation Feb 2021
css-color-3 CSS Color Module Level 3 Recommendation Jan 2022
css3-content CSS Generated Content Module Level 3 WorkingDraft Aug 2019
css-fonts-3 CSS Fonts Module Level 3 Recommendation Sep 2018
css3-gcpm CSS Generated Content for Paged Media Module WorkingDraft May 2014
css3-layout CSS Template Layout Module Note Mar 2015
css3-mediaqueries Media Queries Recommendation Jun 2012
mediaqueries-4 Media Queries Level 4 CandidateRec. Dec 2021
css3-multicol Multi-column Layout Module Level 1 CandidateRec. Oct 2021
css3-page CSS Paged Media Module Level 3 WorkingDraft,and part migrated to css3-break Oct 2018
css3-break CSS Fragmentation Module Level 3 CandidateRec. Dec 2018
selectors-3 Selectors Level 3 Recommendation Nov 2018
selectors-4 Selectors Level 4 WorkingDraft Nov 2022
css3-ui CSS Basic User Interface Module Level 3 (CSS3 UI) Recommendation Jun 2018

CSS 4

[edit]
Jen Simmonsdiscussing the state of CSS in 2019, as several CSS4 modules were being advanced

There is no single, integrated CSS4 specification,[54]because the specification has been split into many separate modules which level independently.

Modules that build on things from CSS Level 2 started at Level 3. Some of them have already reached Level 4 or are already approaching Level 5. Other modules that define entirely new functionality, such asFlexbox,[55]have been designated as Level 1 and some of them are approaching Level 2.

The CSS Working Group sometimes publishes "Snapshots", a collection of whole modules and parts of other drafts that are considered stable enough to be implemented by browser developers. So far, five such "best current practices" documents have been published as Notes, in 2007,[56]2010,[57]2015,[58]2017,[59]and 2018.[60]

Since these specification snapshots are primarily intended for developers, there has been a growing demand for a similar versioned reference document targeted at authors, which would present the state of interoperable implementations as meanwhile documented by sites like Can I Use...[61]and the MDN Web Docs.[62]A W3C Community Group has been established in early 2020 in order to discuss and define such a resource.[63]The actual kind ofversioningis also up to debate, which means that the document, once produced, might not be called "CSS4".

Browser support

[edit]

Each web browser uses alayout engineto render web pages, and support for CSS functionality is not consistent between them. Because browsers do not parse CSS perfectly, multiple coding techniques have been developed to target specific browsers with workarounds (commonly known asCSS hacksor CSS filters). The adoption of new functionality in CSS can be hindered by a lack of support in major browsers. For example, Internet Explorer was slow to add support for many CSS 3 features, which slowed the adoption of those features and damaged the browser's reputation among developers. Additionally, a proprietary syntax for the non-vendor-prefixedfilterproperty was used in some versions.[64]In order to ensure a consistent experience for their users, web developers often test their sites across multiple operating systems, browsers, and browser versions, increasing development time and complexity. Tools such asBrowserStackhave been built to reduce the complexity of maintaining these environments.

In addition to these testing tools, many sites maintain lists of browser support for specific CSS properties, includingCanIUseand theMDN Web Docs.Additionally, CSS 3 defines feature queries, which provide an@supportsdirective that will allow developers to target browsers with support for certain functionality directly within their CSS.[65]CSS that is not supported by older browsers can also sometimes be patched in using JavaScriptpolyfills,which are pieces of JavaScript code designed to make browsers behave consistently. These workarounds—and the need to support fallback functionality—can add complexity to development projects, and consequently, companies frequently define a list of browser versions that they will and will not support.

As websites adopt newer code standards that are incompatible with older browsers, these browsers can be cut off from accessing many of the resources on the web (sometimes intentionally).[66]Many of the most popular sites on the internet are not just visually degraded on older browsers due to poor CSS support but do not work at all, in large part due to the evolution of JavaScript and other web technologies.

Limitations

[edit]

Some noted limitations of the current capabilities of CSS include:

Cannot explicitly declare new scope independently of position

[edit]

Scoping rules for properties such as z-index look for the closest parent element with a position: absolute or position: relative attribute. This odd coupling has undesired effects. For example, it is impossible to avoid declaring a new scope when one is forced to adjust an element's position, preventing one from using the desired scope of a parent element.

Pseudo-class dynamic behavior not controllable

[edit]

CSS implements pseudo-classes that allow a degree of user feedback by conditional application of alternate styles. One CSS pseudo-class, ":hover",is dynamic (equivalent of JavaScript" onmouseover ") and has potential for misuse (e.g., implementing cursor-proximity popups),[67]but CSS has no ability for a client to disable it (no "disable" -like property) or limit its effects (no "nochange" -like values for each property).

Cannot name rules

[edit]

There is no way to name a CSS rule, which would allow (for example) client-side scripts to refer to the rule even if its selector changes.

Cannot include styles from a rule into another rule

[edit]

CSS styles often must be duplicated in several rules to achieve the desired effect, causing additional maintenance and requiring more thorough testing. Some new CSS features were proposed to solve this but were abandoned afterward.[68][69]Instead, authors may gain this ability by using more sophisticated stylesheet languages which compile to CSS, such asSass,Less,orStylus.

Cannot target specific text without altering markup

[edit]

Besides the:first-letterpseudo-element, one cannot target specific ranges of text without needing to utilize placeholder elements.

Advantages

[edit]

Separation of content from presentation

[edit]

CSS facilitates the publication of content in multiple presentation formats based on nominal parameters. Nominal parameters include explicit user preferences, different web browsers, the type of device being used to view the content (a desktop computer or mobile device), the geographic location of the user, and many other variables.

Site-wide consistency

[edit]

When CSS is used effectively, in terms of inheritance and "cascading", a global style sheet can be used to affect and style elements site-wide. If the situation arises that the styling of the elements should be changed or adjusted, these changes can be made by editing rules in the global style sheet. Before CSS, this sort of maintenance was more difficult, expensive, and time-consuming.

Bandwidth

[edit]

A stylesheet, internal or external, specifies the style once for a range of HTML elements selected byclass,type or relationship to others. This is much more efficient than repeating style information inline for each occurrence of the element. An external stylesheet is usually stored in thebrowser cache,and can therefore be used on multiple pages without being reloaded, further reducing data transfer over a network.

Page reformatting

[edit]

With a simple change of one line, a different style sheet can be used for the same page. This has advantages for accessibility, as well as providing the ability to tailor a page or site to different target devices. Furthermore, devices not able to understand the styling still display the content.

Accessibility

[edit]

Without CSS, web designers must typically lay out their pages with techniques such as HTML tables that hinder accessibility for vision-impaired users (seeTableless web design#Accessibility).

Standardization

[edit]

Frameworks

[edit]

CSS frameworksare preparedlibrariesthat are meant to allow for easier, more standards-compliant styling ofweb pagesusing the Cascading Style Sheets language. CSS frameworks includeBlueprint,Bootstrap,Foundationand Materialize. Like programming and scripting language libraries, CSS frameworks are usually incorporated as external.css sheets referenced in the HTML<head>.They provide a number of ready-made options for designing and laying out the web page. Although many of these frameworks have been published, some authors use them mostly for rapid prototyping, or for learning from, and prefer to 'handcraft' CSS that is appropriate to each published site without the design, maintenance and download overhead of having many unused features in the site's styling.[70]

Blueprint

[edit]
Blueprintis aCSS frameworkdesigned to reduce development time and ensureCross-browsercompatibility when working withCascading Style Sheets(CSS). It also serves as a foundation for many tools designed to make CSS development easier and more accessible to beginners.

Bootstrap

[edit]
Bootstrap(formerly Twitter Bootstrap) is afree and open-sourceCSS frameworkdirected at responsive,mobile-firstfront-end web development.It containsHTML,CSS and (optionally)JavaScript-based design templates fortypography,forms,buttons,navigation,and other interface components.

Foundation

[edit]
Foundationis a freeresponsivefront-endframework, providing a responsive grid andHTMLand CSSUIcomponents, templates, and code snippets, including typography, forms, buttons, navigation and other interface elements, as well as optional functionality provided byJavaScriptextensions. Foundation is anopen sourceproject, and was formerly maintained by ZURB. Since 2019, Foundation has been maintained by volunteers.[71]

Design methodologies

[edit]

As the size of CSS resources used in a project increases, a development team often needs to decide on a common design methodology to keep them organized. The goals are ease of development, ease of collaboration during development, and performance of the deployed stylesheets in the browser. Popular methodologies include OOCSS (object-oriented CSS), ACSS (atomic CSS), CSS (organic Cascade Style Sheet), SMACSS (scalable and modular architecture for CSS), and BEM (block, element, modifier).[72]

See also

[edit]

References

[edit]
  1. ^"CSS developer guide".MDN Web Docs.Archivedfrom the original on 2015-09-25.Retrieved2015-09-24.
  2. ^Flanagan, David (18 April 2011).JavaScript: the definitive guide.Beijing; Farnham: O'Reilly. p. 1.ISBN978-1-4493-9385-4.OCLC686709345.JavaScript is part of the triad of technologies that all Web developers must learn: HTML to specify the content of web pages, CSS to specify the presentation of web pages, and JavaScript to specify the behavior of web pages.
  3. ^"What is CSS?".World Wide Web Consortium.Archivedfrom the original on 2010-11-29.Retrieved2010-12-01.
  4. ^Clark, Scott (23 July 2010)."Web-based Mobile Apps of the Future Using HTML 5, CSS and JavaScript".HTML Goodies.HTMLGoodies.Archivedfrom the original on 2014-10-20.Retrieved2014-10-16.
  5. ^"W3C CSS validation service".Archivedfrom the original on 2011-02-14.Retrieved2012-06-30.
  6. ^"W3C CSS2.1 specification for pseudo-elements and pseudo-classes".World Wide Web Consortium. 7 June 2011.Archivedfrom the original on 30 April 2012.Retrieved30 April2012.
  7. ^"Selectors".Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification.W3C.Archivedfrom the original on 2006-04-23.
  8. ^"Selectors Level 3".W3C.Archivedfrom the original on 2014-06-03.Retrieved2014-05-30.
  9. ^"CSS Syntax Module Level 3".W3C.Archivedfrom the original on 1 October 2023.Retrieved1 October2023.
  10. ^"W3C CSS2.1 specification for rule sets, declaration blocks, and selectors".World Wide Web Consortium. 7 June 2011.Archivedfrom the original on 28 March 2008.Retrieved2009-06-20.
  11. ^"Full property table".W3C.Archivedfrom the original on 2014-05-30.Retrieved2014-05-30.
  12. ^"Index of CSS properties".W3C.Retrieved2020-08-09.
  13. ^"CSS Color".MDN Web Docs. 2024-04-05.Archivedfrom the original on 2024-03-27.Retrieved2024-04-05.
  14. ^"6.1 Length units".Cascading Style Sheets, level 1.17 December 1996.Archivedfrom the original on 14 June 2019.Retrieved20 June2019.
  15. ^"5. Distance Units: the <length> type".CSS Values and Units Module Level 3.6 June 2019.Archivedfrom the original on 7 June 2019.Retrieved20 June2019.
  16. ^W3C HTML Working Group."HTML 5. A vocabulary and associated APIs for HTML and XHTML".World Wide Web Consortium.Archivedfrom the original on 15 July 2014.Retrieved28 June2014.
  17. ^abMeyer, Eric A. (2006).Cascading Style Sheets: The Definitive Guide(3rd ed.). O'Reilly Media, Inc.ISBN0-596-52733-0.Archivedfrom the original on 2014-02-15.Retrieved2014-02-16.
  18. ^"Assigning property values, Cascading, and Inheritance".Archivedfrom the original on 2014-06-11.Retrieved2014-06-10.
  19. ^"Can a CSS class inherit one or more other classes?".StackOverflow.Archivedfrom the original on 2017-10-14.Retrieved2017-09-10.
  20. ^"Shorthand properties".Tutorial.Mozilla Developers. 2017-12-07. Archived fromthe originalon 2018-01-30.Retrieved2018-01-30.
  21. ^abcBos, Bert; et al. (7 December 2010)."9.3 Positioning schemes".Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification.W3C.Archivedfrom the original on 18 February 2011.Retrieved16 February2011.
  22. ^Holzschlag, Molly E(2005).Spring into HTML and CSS.Pearson Education, Inc.ISBN0-13-185586-7.
  23. ^abLie, Hakon W (10 October 1994)."Cascading HTML style sheets – a proposal"(Proposal).CERN.Archivedfrom the original on 4 June 2014.Retrieved25 May2014.
  24. ^abcdefLie, Håkon Wium;Bos, Bert(1999).Cascading Style Sheets, designing for the Web.Addison Wesley.ISBN0-201-59625-3.Retrieved23 June2010.
  25. ^"Cascading Style Sheets, level 1".World Wide Web Consortium.Archivedfrom the original on 2014-04-09.Retrieved2014-03-07.
  26. ^abcBos, Bert(14 April 1995)."Simple style sheets for SGML & HTML on the web".World Wide Web Consortium.Archivedfrom the original on 23 September 2009.Retrieved20 June2010.
  27. ^abc"Cascading Style Sheets".University of Oslo. Archived fromthe originalon 2006-09-06.Retrieved3 September2014.
  28. ^abPetrie, Charles;Cailliau, Robert(November 1997)."Interview Robert Cailliau on the WWW Proposal:" How It Really Happened. "".Institute of Electrical and Electronics Engineers.Archived fromthe originalon 6 January 2011.Retrieved18 August2010.
  29. ^Bos, Bert(31 March 1995)."Stream-based Style sheet Proposal".Archivedfrom the original on 12 October 2014.Retrieved3 September2014.
  30. ^Nielsen, Henrik Frystyk(7 June 2002)."Libwww Hackers".World Wide Web Consortium.Archivedfrom the original on 2 December 2009.Retrieved6 June2010.
  31. ^"Yves Lafon".World Wide Web Consortium.Archivedfrom the original on 24 June 2010.Retrieved17 June2010.
  32. ^"The W3C Team: Technology and Society".World Wide Web Consortium. 18 July 2008.Archivedfrom the original on 28 May 2010.Retrieved22 January2011.
  33. ^Lou Montulli;Brendan Eich;Scott Furman;Donna Converse;Troy Chevalier(22 August 1996)."JavaScript-Based Style Sheets".W3C.Archivedfrom the original on 27 May 2010.Retrieved23 June2010.
  34. ^"CSS software".W3C.Archivedfrom the original on 2010-11-25.Retrieved2011-01-15.
  35. ^Anne van Kesteren."CSS 2.1 – Anne's Weblog".Archivedfrom the original on 2005-12-10.Retrieved2011-02-16.
  36. ^"Archive of W3C News in 2007".World Wide Web Consortium.Archivedfrom the original on 2011-06-28.Retrieved2011-02-16.
  37. ^Nitot, Tristan (18 March 2002)."Incorrect MIME Type for CSS Files".Mozilla Developer Center.Mozilla.Archived fromthe originalon 2011-05-20.Retrieved20 June2010.
  38. ^McBride, Don (27 November 2009)."File Types".Archivedfrom the original on 29 October 2010.Retrieved20 June2010.
  39. ^"css file extension details".File extension database. 12 March 2010. Archived fromthe originalon 18 July 2011.Retrieved20 June2010.
  40. ^Kyrnin, Jennifer (2019-11-12)."What Are CSS Vendor or Browser Prefixes?".Lifewire.Archivedfrom the original on Nov 30, 2020.
  41. ^"Compatibility Standard".WHATWG.24 January 2024.Archivedfrom the original on Feb 4, 2024.
  42. ^"CSS Snapshot 2023 - 2.4. CSS Levels".W3C.7 December 2023.Archivedfrom the original on Feb 8, 2024.
  43. ^Bos, Bert; Wium Lie, Håkon (1997).Cascading style sheets: designing for the Web(1st print. ed.). Harlow, England; Reading, MA.: Addison Wesley Longman.ISBN0-201-41998-X.
  44. ^W3C:Cascading Style Sheets, level 1Archived2011-02-09 at theWayback MachineCSS 1 specification
  45. ^W3C:Cascading Style Sheets level 1 specificationArchived2011-02-11 at theWayback MachineCSS level 1 specification
  46. ^"Aural style sheets".W3C.Archivedfrom the original on 2014-10-26.Retrieved2014-10-26.
  47. ^W3C:Cascading Style Sheets, level 2Archived2011-01-16 at theWayback MachineCSS 2 specification (1998 recommendation)
  48. ^W3C:Cascading Style Sheets, level 2 revision 1Archived2011-11-09 at theWayback MachineCSS 2.1 specification (W3C Proposed Recommendation)
  49. ^W3C:Cascading Style Sheets Standard Boasts Unprecedented InteroperabilityArchived2011-06-10 at theWayback Machine
  50. ^Bos, Bert(18 February 2011)."Descriptions of all CSS specifications".World Wide Web Consortium.Archivedfrom the original on 31 March 2011.Retrieved3 March2011.
  51. ^Bos, Bert(26 February 2011)."CSS current work".World Wide Web Consortium.Archivedfrom the original on 3 March 2011.Retrieved3 March2011.
  52. ^Etemad, Elika J.(12 December 2010)."Cascading Style Sheets (CSS) Snapshot 2010".World Wide Web Consortium.Archivedfrom the original on 16 March 2011.Retrieved3 March2011.
  53. ^"All CSS specifications".W3C. 2014-05-22.Archivedfrom the original on 2014-05-30.Retrieved2014-05-30.
  54. ^Atkins, Tab Jr."A Word About CSS4".Archivedfrom the original on 31 October 2012.Retrieved18 October2012.
  55. ^"CSS Flexible Box Layout Module Level 1".W3C. 19 November 2018.Archivedfrom the original on 19 October 2012.Retrieved18 October2012.
  56. ^"Cascading Style Sheets (CSS) Snapshot 2007".12 May 2011.Archivedfrom the original on 8 August 2016.Retrieved18 July2016.
  57. ^"Cascading Style Sheets (CSS) Snapshot 2010".12 May 2011.Archivedfrom the original on 16 March 2011.Retrieved3 March2011.
  58. ^"CSS Snapshot 2015".W3C.13 October 2015.Archivedfrom the original on 27 January 2017.Retrieved13 February2017.
  59. ^"CSS Snapshot 2017".W3C.31 January 2017.Archivedfrom the original on 13 February 2017.Retrieved13 February2017.
  60. ^"CSS Snapshot 2018".W3C.22 January 2019.Archivedfrom the original on 1 February 2019.Retrieved2 January2019.
  61. ^"CSS".Can I Use… Support tables for HTML5, CSS3, etc.Archivedfrom the original on 2018-02-19.Retrieved2019-01-26.
  62. ^"CSS".MDN Web Docs.21 July 2023.Archivedfrom the original on Nov 26, 2023.
  63. ^"Call for Participation in CSS4 Community Group".W3C.24 February 2020.Archivedfrom the original on Feb 10, 2023.Retrieved2020-02-27.
  64. ^Lazaris, Louis (2010-04-28)."CSS3 Solutions for Internet Explorer".Smashing Magazine.Archivedfrom the original on 2016-10-12.Retrieved2016-10-12.
  65. ^Simmons, Jen (August 17, 2016)."Using Feature Queries in CSS".Mozilla Hacks.Archivedfrom the original on 2016-10-11.Retrieved2016-10-12.
  66. ^Hutchinson, Lee (2019)."Looking at the Web with Internet Explorer 6, one last time".Ars Technica.Archivedfrom the original on 2016-10-12.Retrieved2016-10-12.
  67. ^"Pure CSS Popups".meyerweb. Archived fromthe originalon 2009-12-09.Retrieved2009-11-19.
  68. ^Tab Atkins Jr."CSS apply rule".GitHub. Archived fromthe originalon 2016-02-22.Retrieved2016-02-27.
  69. ^"Why I Abandoned @apply — Tab Completion".
  70. ^Cederholm, Dan; Ethan Marcotte (2009).Handcrafted CSS: More Bulletproof Web Design.New Riders. p. 114.ISBN978-0-321-64338-4.Archivedfrom the original on 20 December 2012.Retrieved19 June2010.
  71. ^"Is Zurb Foundation in active development?".GitHub.Retrieved21 Nov2019.
  72. ^Antti, Hiljá."OOCSS, ACSS, BEM, SMACSS: what are they? What should I use?".clubmate.fi.Hiljá. Archived fromthe originalon 2 June 2015.Retrieved2 June2015.

Further reading

[edit]
[edit]