CSS - Wikipedia CSS - Wikipedia CSS - Cs
CSS - Wikipedia CSS - Wikipedia CSS - Cs
CSS
Cascading Style Sheets (CSS) is a style sheet
language used for specifying the presentation and Cascading Style Sheets (CSS)
styling of a document written in a markup language
such as HTML or XML (including XML dialects such
as SVG, MathML or XHTML).[2] CSS is a
cornerstone technology of the World Wide Web,
alongside HTML and JavaScript.[3]
CSS is designed to enable the separation of content Official logo since December 2024[1]
and presentation, including layout, colors, and
fonts.[4] This separation can improve content
accessibility, since the content can be written
without concern for its presentation; provide more
flexibility and control in the specification of
presentation characteristics; enable multiple web
pages to 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 be cached to improve the page load
speed between the pages that share the file and its
formatting.
Example of CSS source code
Separation of formatting and content also makes it
feasible to present the same markup page in Filename .css
extension
different styles for different rendering methods, such
Internet text/css
as on-screen, in print, by voice (via speech-based media type
browser or screen reader), and on Braille-based Uniform Type public.css
tactile devices. CSS also has rules for alternative Identifier (UTI)
formatting if the content is accessed on a mobile Developed by World Wide Web
device.[5] Consortium (W3C)
Initial release 17 December 1996
The name cascading comes from the specified
Latest release CSS 3 is being developed
priority scheme to determine which declaration
as multiple separate
applies if more than one declaration of a property modules. Regular
match a particular element. This cascading priority snapshots (https://www.w3.
scheme is predictable. org/TR/CSS/) summarize
their status.
7 December 2023
The CSS specifications are maintained by the World
Wide Web Consortium (W3C). Internet media type Type of format Style sheet language
(MIME type) text/css is registered for use with Container for Style rules for HTML
CSS by RFC 2318 (March 1998). The W3C operates a elements
free CSS validation service for CSS documents.[6] Contained by HTML Documents
Open format? Yes
https://en.wikipedia.org/wiki/CSS 1/25
9/19/25, 4:39 PM CSS - Wikipedia
Syntax
CSS has a simple syntax and uses a number of English keywords to specify the names of various
style properties.
Style sheet
A style sheet consists of a list of rules. Each rule or rule-set consists of one or more selectors, and a
declaration block.
Selector
In CSS, selectors declare which part of the markup a style applies to by matching tags and
attributes in the markup itself.
Selector types
Selectors may apply to the following:
Pseudo-classes
Pseudo-classes are 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 in a:hover or #elementid:hover.
https://en.wikipedia.org/wiki/CSS 2/25
9/19/25, 4:39 PM CSS - Wikipedia
Combinators
Multiple simple selectors may be joined using combinators to specify elements by location,
element type, id, class, or any combination thereof.[8] 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 .myClass div {color: red;} applies to all div elements that are inside
elements of class myClass. This is not to be confused with concatenated identifiers such as
div.myClass {color: red;} which applies to div elements of class myClass.
https://en.wikipedia.org/wiki/CSS 3/25
9/19/25, 4:39 PM CSS - Wikipedia
First
defined
Pattern Matches
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
1
E:visited not yet visited (:link) or already visited (:visited)
E:active 1
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-last-
an E element, the n-th child of its parent, counting from the last one 3
child(n)
E:nth-last-of-
an E element, the n-th sibling of its type, counting from the last one 3
type(n)
https://en.wikipedia.org/wiki/CSS 4/25
9/19/25, 4:39 PM CSS - Wikipedia
Declaration block
A declaration block consists of a pair of braces ({}) enclosing a semicolon-separated list of
declarations.[10]
Declaration
Each declaration itself consists of a property, a colon (:), and a value. Optional white-space may
be around the declaration block, declarations, colons, and semi-colons for readability.[11]
Properties
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.[12][13]
Values
Values may be keywords, such as "center" or "inherit", or numerical values, such as 200px (200
pixels), 50vw (50 percent of the viewport width) or 80% (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(0 100% 50%), hsl(0 100% 50% / 0.8)).[14]
Non-zero numeric values representing linear measures must include a length unit, which is either
an alphabetic code or abbreviation, as in 200px or 50vw; or a percentage sign, as in 80%. Some
units – cm (centimetre); in (inch); mm (millimetre); pc (pica); and pt (point) – are absolute, which
means that the rendered dimension does not depend upon the structure of the page; others – em
(em); ex (ex) and px (pixel) – are relative, 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[15]
https://en.wikipedia.org/wiki/CSS 5/25
9/19/25, 4:39 PM CSS - Wikipedia
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; and vw.[16]
Use
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 (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.
Before CSS, document authors who wanted to assign such typographic characteristics to, say, all h2
headings 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. The W3C has now deprecated the use of all
presentational HTML markup.[17]
For example, under pre-CSS HTML, a heading element defined with red text would be written as:
Using CSS, the same element can be coded using style properties instead of HTML presentational
attributes:
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>
All h1 elements in the document will then automatically become red without requiring any explicit
code. If the author later wanted to make h1 elements blue instead, this could be done by changing
the style element to:
https://en.wikipedia.org/wiki/CSS 6/25
9/19/25, 4:39 PM CSS - Wikipedia
<style>
h1 {
color: blue;
}
</style>
rather than by laboriously going through the document and changing the color for each individual
h1 element.
The styles can also be placed in an external CSS file, as described below, and loaded using syntax
similar to:
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
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.
Cascading
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 called cascading.
One of the goals of CSS is to allow users greater control 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 like Stylish and Stylus
have 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
https://en.wikipedia.org/wiki/CSS 7/25
9/19/25, 4:39 PM CSS - Wikipedia
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.
4 User defined Most browsers have the accessibility feature: a user-defined CSS
A specific contextual selector (#heading p) overwrites generic
5 Selector specificity
definition
Specificity
Specificity refers to the relative weights of various rules.[18] 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"[19] (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
p em {color: green;} 0, 0, 0, 2
style=" " 1, 0, 0, 0
Examples
Consider this HTML fragment:
https://en.wikipedia.org/wiki/CSS 8/25
9/19/25, 4:39 PM CSS - Wikipedia
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
#xyz { color: blue; }
</style>
</head>
<body>
<p id="xyz" style="color: green;">To demonstrate specificity</p>
</body>
</html>
In the above example, the declaration in the style attribute overrides the one in the <style>
element because it has a higher specificity, and thus, the paragraph appears green:
To demonstrate specificity
Inheritance
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.[18] Inheritance relies on the document tree, which is the hierarchy of
XHTML elements 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 as inheritance in class-based programming languages, where it
is possible to define class B as "like class A, but with modifications".[20] With CSS, it is possible to
style an element with "class A, but with modifications". However, it is not possible to define a CSS
class B like that, which could then be used to style multiple elements without having to repeat the
modifications.
Example
Given the following style sheet:
p {
color: pink;
}
https://en.wikipedia.org/wiki/CSS 9/25
9/19/25, 4:39 PM CSS - Wikipedia
<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:
Whitespace
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:left top;}
body {
overflow: hidden;
background-color: #000000;
background-image: url(images/bg.gif);
background-repeat: no-repeat;
background-position: left top;
}
Indentation
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:[21]
body {
overflow: hidden;
background: #000 url(images/bg.gif) no-repeat left top;
}
Sometimes, multiple property values are indented onto their own line:
@font-face {
font-family: 'Comic Sans';
font-size: 20px;
src: url('first.example.com'),
url('second.example.com'),
url('third.example.com'),
url('fourth.example.com');
}
https://en.wikipedia.org/wiki/CSS 10/25
9/19/25, 4:39 PM CSS - Wikipedia
Positioning
CSS 2.1 defines three positioning schemes:
Normal flow
Inline items 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. Block
items 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.[22]
Position property
There are five possible values of the position property. If an item is positioned in any way other
than static, then the further properties top, bottom, left, and right are used to specify offsets
and positions.The element having position static is not affected by the top, bottom , left or right
properties.
Static
The default value places the item in the normal flow.
Relative
The item is placed in the normal flow, and then shifted or offset from that position. Subsequent
flow items are laid out as if the item had not been moved.
Absolute
Specifies absolute positioning. The element is positioned in relation to its nearest non-static
ancestor.
Fixed
The item is absolutely positioned in a fixed position on the screen even as the rest of the document
is scrolled[22]
left
The item floats to the left of the line that it would have appeared in; other items may flow
around its right side.
right
The item floats to the right of the line that it would have appeared in; other items may flow
around its left side.
https://en.wikipedia.org/wiki/CSS 11/25
9/19/25, 4:39 PM CSS - Wikipedia
clear
Forces the element to appear underneath ('clear') floated elements to the left (clear:left),
right (clear:right) or both sides (clear:both).[22][23]
History
CSS was first proposed by Håkon Wium Lie on 10 October 1994.[24]
At the time, Lie was working with Tim Berners-Lee at CERN.[25]
Several other style sheet languages for the web were proposed
around the same time, and discussions on public mailing lists and
inside World Wide Web Consortium resulted in the first W3C CSS
Recommendation (CSS1)[26] being released in 1996. In particular, a
proposal by Bert Bos was influential; he became co-author of CSS1,
and is regarded as co-creator of CSS.[27]
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.[28] Of these nine
proposals, two were especially influential on what became CSS: Cascading HTML Style Sheets[24]
and Stream-based Style Sheet Proposal (SSP).[27][30] Two browsers served as testbeds for the
initial proposals; Lie worked with Yves Lafon to implement CSS in Dave Raggett's Arena
browser.[31][32][33] Bert Bos implemented his own SSP proposal in the Argo browser.[27]
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).[25]
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.[25] 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 by Steven 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
https://en.wikipedia.org/wiki/CSS 12/25
9/19/25, 4:39 PM CSS - Wikipedia
staff on this aspect of the project, with additional members, including Thomas Reardon of
Microsoft, participating as well. In August 1996, Netscape Communication Corporation presented
an alternative style sheet language called JavaScript Style Sheets (JSSS).[25] The spec was never
finished, and is deprecated.[34] 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 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.
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
other quirks. Microsoft Internet Explorer 5. x for Windows, as opposed to the very different IE for
Macintosh, had a flawed implementation of the CSS 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 and platforms without the use of workarounds
termed CSS hacks and filters. The IE Windows box model bugs were so serious that, when Internet
Explorer 6 was 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 of
HTML files to ensure they contained special distinctive "standards-compliant CSS intended"
marker to show that the authors intended CSS to be interpreted correctly, in compliance with
standards, as opposed to being intended for the now long-obsolete IE5/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
https://en.wikipedia.org/wiki/CSS 13/25
9/19/25, 4:39 PM CSS - Wikipedia
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,[36] and
only returned to Candidate Recommendation status on July 19, 2007.[37]
In addition to these problems, the .css extension was used by a software product used to convert
PowerPoint files into Compact Slide Show files,[38] so some web servers served all .css[39] as
MIME type application/x-pointplus[40] rather than text/css.
Vendor prefixes
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- for Mozilla Firefox, -webkit- named after the browsing
engine of Apple Safari, -o- for Opera Browser and -ms- for Microsoft Internet Explorer and early
versions of Microsoft Edge that use EdgeHTML.
Occasionally, the parameters with vendor prefixes such as -moz-radial-gradient and -webkit-
linear-gradient have slightly different syntax as compared to their non-vendor-prefix
counterparts.[41]
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.[42]
CSS 1
The first CSS specification to become an official W3C
Recommendation is CSS level 1, published on 17 December
1996. Håkon Wium Lie and Bert Bos are credited as the
original developers.[44][45] Among its capabilities are
support for
https://en.wikipedia.org/wiki/CSS 14/25
9/19/25, 4:39 PM CSS - Wikipedia
CSS 2
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 and z-index, the concept of media types, support for aural style sheets
(which were later replaced by the CSS 3 speech modules)[47] and bidirectional text, and new font
properties such as shadows.
CSS 2.1
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 a Candidate Recommendation (https://www.w3.org/TR/200
4/CR-CSS21-20040225/) on 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.[49] After being reviewed by the W3C
Advisory Committee, it was finally published as a W3C Recommendation on 7 June 2011.[50]
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
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.[51]
Due to the modularization, different modules have different stability and statuses.[52]
Some modules have Candidate Recommendation (CR) status and are considered moderately
stable. At CR stage, implementations are advised to drop vendor prefixes.[53]
https://en.wikipedia.org/wiki/CSS 15/25
9/19/25, 4:39 PM CSS - Wikipedia
CSS Paged Media Module Level 3 (https://www. Working Draft, and part
css3-page Oct 2018
w3.org/TR/css3-page/) migrated to css3-break
CSS Fragmentation Module Level 3 (https://ww
css3-break Candidate Rec. Dec 2018
w.w3.org/TR/css-break/)
CSS 4
There is no single, integrated CSS4 specification,[55]
because the specification has been split into many separate
modules which level independently.
https://en.wikipedia.org/wiki/CSS 16/25
9/19/25, 4:39 PM CSS - Wikipedia
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,[57]
2010,[58] 2015,[59] 2017,[60] and 2018.[61]
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...[62] and
the MDN Web Docs.[63] A W3C Community Group has been established in early 2020 in order to
discuss and define such a resource.[64] The actual kind of versioning is also up to debate, which
means that the document, once produced, might not be called "CSS4".
Browser support
Each web browser uses a layout engine to 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
as CSS hacks or 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-prefixed filter property
was used in some versions.[65] 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 as BrowserStack have 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, including CanIUse (https://caniuse.com/) and the MDN Web Docs. Additionally, CSS 3
defines feature queries, which provide an @supports directive that will allow developers to target
browsers with support for certain functionality directly within their CSS.[66] CSS that is not
supported by older browsers can also sometimes be patched in using JavaScript polyfills, 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).[67]
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
Some noted limitations of the current capabilities of CSS include:
https://en.wikipedia.org/wiki/CSS 17/25
9/19/25, 4:39 PM CSS - Wikipedia
Advantages
https://en.wikipedia.org/wiki/CSS 18/25
9/19/25, 4:39 PM CSS - Wikipedia
Site-wide consistency
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
A stylesheet, internal or external, specifies the style once for a range of HTML elements selected by
class, 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 the browser
cache, and can therefore be used on multiple pages without being reloaded, further reducing data
transfer over a network.
Page reformatting
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
Without CSS, web designers must typically lay out their pages with techniques such as HTML
tables that hinder accessibility for vision-impaired users (see Tableless web design § Accessibility).
Standardization
Frameworks
CSS frameworks are prepared libraries that are meant to allow for easier, more standards-
compliant styling of web pages using the Cascading Style Sheets language. CSS frameworks include
Blueprint, Bootstrap, Foundation and 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.[71]
Design methodologies
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]
https://en.wikipedia.org/wiki/CSS 19/25
9/19/25, 4:39 PM CSS - Wikipedia
See also
Flash of unstyled content
CSS-in-JS
References
1. "Minutes Telecon 2024-12-11" (https://www.w3.org/blog/CSS/2024/12/12/minutes-2024-12-11/).
CSS WG Blog. W3C. 2024-12-12. Archived (https://web.archive.org/web/20250116125653/http
s://www.w3.org/blog/CSS/2024/12/12/minutes-2024-12-11/) from the original on 2025-01-16.
Retrieved 2025-01-16.
2. "CSS developer guide" (https://developer.mozilla.org/en-US/docs/Web/Guide/CSS). MDN Web
Docs. Archived (https://web.archive.org/web/20150925133829/https://developer.mozilla.org/en-
US/docs/Web/Guide/CSS) from the original on 2015-09-25. Retrieved 2015-09-24.
3. Flanagan, David (18 April 2011). JavaScript: the definitive guide. Beijing; Farnham: O'Reilly.
p. 1. ISBN 978-1-4493-9385-4. OCLC 686709345 (https://search.worldcat.org/oclc/68670934
5). "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."
4. "What is CSS?" (https://www.w3.org/standards/webdesign/htmlcss#whatcss). World Wide Web
Consortium. Archived (https://web.archive.org/web/20101129081921/https://www.w3.org/stand
ards/webdesign/htmlcss#whatcss) from the original on 2010-11-29. Retrieved 2010-12-01.
5. Clark, Scott (23 July 2010). "Web-based Mobile Apps of the Future Using HTML 5, CSS and
JavaScript" (https://www.htmlgoodies.com/beyond/article.php/3893911/Web-based-Mobile-App
s-of-the-Future-Using-HTML-5-CSS-and-JavaScript.htm). HTML Goodies. HTMLGoodies.
Archived (https://web.archive.org/web/20141020121735/https://www.htmlgoodies.com/beyond/
article.php/3893911/Web-based-Mobile-Apps-of-the-Future-Using-HTML-5-CSS-and-JavaScrip
t.htm) from the original on 2014-10-20. Retrieved 2014-10-16.
6. "W3C CSS validation service" (https://jigsaw.w3.org/css-validator/). Archived (https://web.archi
ve.org/web/20110214164625/https://jigsaw.w3.org/css-validator/) from the original on 2011-02-
14. Retrieved 2012-06-30.
7. "W3C CSS2.1 specification for pseudo-elements and pseudo-classes" (https://www.w3.org/TR/
CSS21/selector.html#pseudo-elements). World Wide Web Consortium. 7 June 2011. Archived
(https://web.archive.org/web/20120430011514/https://www.w3.org/TR/CSS21/selector.html#ps
eudo-elements) from the original on 30 April 2012. Retrieved 30 April 2012.
8. "Selectors" (https://www.w3.org/TR/CSS21/selector.html). Cascading Style Sheets Level 2
Revision 1 (CSS 2.1) Specification. W3C. Archived (https://web.archive.org/web/20060423174
213/https://www.w3.org/TR/CSS21/selector.html) from the original on 2006-04-23.
9. "Selectors Level 3" (https://www.w3.org/TR/selectors/). W3C. Archived (https://web.archive.org/
web/20140603165900/https://www.w3.org/TR/selectors/) from the original on 2014-06-03.
Retrieved 2014-05-30.
10. "CSS Syntax Module Level 3" (https://www.w3.org/TR/css-syntax-3/#syntax-description). W3C.
Archived (https://web.archive.org/web/20231001223513/https://www.w3.org/TR/css-syntax-3/)
from the original on 1 October 2023. Retrieved 1 October 2023.
11. "W3C CSS2.1 specification for rule sets, declaration blocks, and selectors" (https://www.w3.or
g/TR/CSS21/syndata.html#q10). World Wide Web Consortium. 7 June 2011. Archived (https://
web.archive.org/web/20080328113605/https://www.w3.org/TR/CSS21/syndata.html#q10) from
the original on 28 March 2008. Retrieved 2009-06-20.
12. "Full property table" (https://www.w3.org/TR/CSS2/propidx.html). W3C. Archived (https://web.ar
chive.org/web/20140530163211/https://www.w3.org/TR/CSS2/propidx.html) from the original
on 2014-05-30. Retrieved 2014-05-30.
https://en.wikipedia.org/wiki/CSS 20/25
9/19/25, 4:39 PM CSS - Wikipedia
https://en.wikipedia.org/wiki/CSS 21/25
9/19/25, 4:39 PM CSS - Wikipedia
https://en.wikipedia.org/wiki/CSS 22/25
9/19/25, 4:39 PM CSS - Wikipedia
https://en.wikipedia.org/wiki/CSS 23/25
9/19/25, 4:39 PM CSS - Wikipedia
59. "CSS Snapshot 2015" (https://www.w3.org/TR/css-2015/). W3C. 13 October 2015. Archived (ht
tps://web.archive.org/web/20170127073733/https://www.w3.org/TR/css-2015/) from the original
on 27 January 2017. Retrieved 13 February 2017.
60. "CSS Snapshot 2017" (https://www.w3.org/TR/css-2017/). W3C. 31 January 2017. Archived (ht
tps://web.archive.org/web/20170213164514/https://www.w3.org/TR/css-2017/) from the original
on 13 February 2017. Retrieved 13 February 2017.
61. "CSS Snapshot 2018" (https://www.w3.org/TR/css-2018/). W3C. 22 January 2019. Archived (ht
tps://web.archive.org/web/20190201162518/https://www.w3.org/TR/css-2018/) from the original
on 1 February 2019. Retrieved 2 January 2019.
62. "CSS" (https://caniuse.com/#cats=CSS). Can I Use… Support tables for HTML5, CSS3, etc.
Archived (https://web.archive.org/web/20180219074228/https://caniuse.com/#cats=CSS) from
the original on 2018-02-19. Retrieved 2019-01-26.
63. "CSS" (https://developer.mozilla.org/docs/Web/CSS). MDN Web Docs. 21 July 2023. Archived
(https://web.archive.org/web/20231126230858/https://developer.mozilla.org/en-US/docs/Web/C
SS) from the original on Nov 26, 2023.
64. "Call for Participation in CSS4 Community Group" (https://www.w3.org/community/css4/).
W3C. 24 February 2020. Archived (https://web.archive.org/web/20230210062151/https://www.
w3.org/community/css4/2020/02/24/call-for-participation-in-css4-community-group/) from the
original on Feb 10, 2023. Retrieved 2020-02-27.
65. Lazaris, Louis (2010-04-28). "CSS3 Solutions for Internet Explorer" (https://www.smashingmag
azine.com/2010/04/css3-solutions-for-internet-explorer/). Smashing Magazine. Archived (http
s://web.archive.org/web/20161012224430/https://www.smashingmagazine.com/2010/04/css3-s
olutions-for-internet-explorer/) from the original on 2016-10-12. Retrieved 2016-10-12.
66. Simmons, Jen (August 17, 2016). "Using Feature Queries in CSS" (https://hacks.mozilla.org/20
16/08/using-feature-queries-in-css/). Mozilla Hacks. Archived (https://web.archive.org/web/201
61011151259/https://hacks.mozilla.org/2016/08/using-feature-queries-in-css/) from the original
on 2016-10-11. Retrieved 2016-10-12.
67. Hutchinson, Lee (2019). "Looking at the Web with Internet Explorer 6, one last time" (https://ars
technica.com/information-technology/2014/04/looking-at-the-web-with-internet-explorer-6-one-l
ast-time/). Ars Technica. Archived (https://web.archive.org/web/20161012151514/https://arstec
hnica.com/information-technology/2014/04/looking-at-the-web-with-internet-explorer-6-one-last
-time/) from the original on 2016-10-12. Retrieved 2016-10-12.
68. "Pure CSS Popups" (https://web.archive.org/web/20091209071014/https://meyerweb.com/eric/
css/edge/popups/demo.html). meyerweb.com. Archived from the original (https://meyerweb.co
m/eric/css/edge/popups/demo.html) on 2009-12-09. Retrieved 2009-11-19.
69. Tab Atkins Jr. "CSS apply rule" (https://web.archive.org/web/20160222160949/https://tabatkins.
github.io/specs/css-apply-rule/). GitHub. Archived from the original (https://tabatkins.github.io/s
pecs/css-apply-rule/) on 2016-02-22. Retrieved 2016-02-27.
70. "Why I Abandoned @apply — Tab Completion" (https://www.xanthir.com/b4o00).
71. Cederholm, Dan; Ethan Marcotte (2009). Handcrafted CSS: More Bulletproof Web Design (http
s://books.google.com/books?id=UgrUeIwsS60C&pg=PA114). New Riders. p. 114. ISBN 978-0-
321-64338-4. Archived (https://web.archive.org/web/20121220221903/https://books.google.co
m/books?id=UgrUeIwsS60C&pg=PA114) from the original on 20 December 2012. Retrieved
19 June 2010.
72. Antti, Hiljá. "OOCSS, ACSS, BEM, SMACSS: what are they? What should I use?" (https://web.
archive.org/web/20150602231126/https://clubmate.fi/oocss-acss-bem-smacss-what-are-they-w
hat-should-i-use/). clubmate.fi. Hiljá. Archived from the original (https://clubmate.fi/oocss-acss-
bem-smacss-what-are-they-what-should-i-use/) on 2 June 2015. Retrieved 2 June 2015.
Further reading
Meyer, Eric A.; Weyl, Estelle (2023). Cascading Style Sheets: The Definitive Guide, Fifth
Edition (https://www.oreilly.com/library/view/css-the-definitive/9781098117603/). O'Reilly
https://en.wikipedia.org/wiki/CSS 24/25
9/19/25, 4:39 PM CSS - Wikipedia
External links
Official website (https://www.w3.org/Style/CSS/)
https://en.wikipedia.org/wiki/CSS 25/25