CSS "Cascading Style Sheets" | Web Scripts | Crax

Welcome To Crax.Pro Forum!

Check our new Marketplace at Crax.Shop

   Login! SignUp Now!
  • We are in solidarity with our brothers and sisters in Palestine. Free Palestine. To learn more visit this Page

  • Crax.Pro domain has been taken down!

    Alternatives: Craxpro.io | Craxpro.com

CSS "Cascading Style Sheets"

CSS "Cascading Style Sheets"

LV
1
 

karr007

Member
Joined
Aug 12, 2023
Threads
20
Likes
17
Awards
4
Credits
1,643©
Cash
0$
"Cascading Style Sheets" and "Pseudo-element" redirect here. For pseudoelement symbols in chemistry, see Skeletal formula § Pseudoelement symbols. For the use of CSS on Wikipedia, see Help:CSS. For other uses, see CSS (disambiguation).
Cascading Style Sheets (CSS)
120px CSS3 logo and wordmark

The official logo of the latest version, CSS 3
B5D180 D0BAD0BED0B4D0B0 D0BDD0B0 CSS

Example of CSS source code
Filename extension.css
Internet media typetext/css
Uniform Type Identifier (UTI)public.css
Developed byWorld Wide Web Consortium (W3C)
Initial release17 December 1996; 26 years ago
Latest releaseCSS 2.1 : Level 2 Revision 1
12 April 2016; 7 years ago
Type of formatStyle sheet language
Container forStyle rules for HTML elements (tags)
Contained byHTML Documents
Open format?Yes
Websitewww.w3.org/TR/CSS/#css
Cascading Style Sheets (CSS) is a style sheet language used for describing the presentation of a document written in a markup language such as HTML or XML (including XML dialects such as SVG, MathML or XHTML).[1] CSS is a cornerstone technology of the World Wide Web, alongside HTML and JavaScript.[2]

CSS is designed to enable the separation of content and presentation, including layout, colors, and fonts.[3] This separation can improve content accessibility; 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.

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 or screen reader), and on Braille-based tactile devices. CSS also has rules for alternate formatting if the content is accessed on a mobile device.[4]

The name cascading comes from the specified priority scheme to determine which style rule applies if more than one rule matches a particular element. This cascading priority scheme is predictable.

The CSS specifications are maintained by the World Wide Web Consortium (W3C). Internet media type (MIME type) text/css is registered for use with CSS by RFC 2318 (March 1998). The W3C operates a free CSS validation service for CSS documents.[5]

In addition to HTML, other markup languages support the use of CSS including XHTML, plain XML, SVG, and XUL. CSS is also used in GTK widget toolkit.

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

Main article: Style sheet (web development)
A style sheet consists of a list of rules. Each rule or rule-set consists of one or more selectors, and a declaration block.

"CSS class" redirects here. For non-CSS use of element classes in HTML, see class attribute (HTML).
In CSS, selectors declare which part of the markup a style applies to by matching tags and attributes in the markup itself.

Selectors may apply to the following:

  • all elements of a specific type, e.g. the second-level headers h2
  • elements specified by attribute, in particular:
    • id: an identifier unique within the document, denoted in the selector language by a hash prefix e.g. #id
    • class: an identifier that can annotate multiple elements in a document, denoted by a dot prefix e.g. .classname (the phrase "CSS class", although sometimes used, is a misnomer, as element classes—specified with the HTML class attribute—is a markup feature that is distinct from browsers' CSS subsystem and the related W3C/WHATWG standards work on document styles; see RDF and microformats for the origins of the "class" system of the Web content model)
  • elements depending on how they are placed relative to others in the document tree.
Classes and IDs are case-sensitive, start with letters, and can include alphanumeric 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 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.

A pseudo-class classifies document elements, such as :link or :visited, whereas a pseudo-element makes a selection that may consist of partial elements, such as ::first-line or ::first-letter.[6] Note the differences between double-colon notation used for pseudo-elements and single-colon notation used for pseudo-class.

Selectors may be combined in many ways to achieve great specificity and flexibility.[7] Multiple selectors may be joined in a spaced list to specify elements by location, element type, id, class, or any combination thereof. 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.

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

PatternMatchesFirst defined
in CSS level
Ean element of type E1
E:linkan E element that is the source anchor of a hyperlink whose target is either not yet visited (:link) or already visited (:visited)1
E:activean E element during certain user actions1
E::first-linethe first formatted line of an E element1
E::first-letterthe first formatted letter of an E element1
.call elements with class="c"1
#myidthe element with id="myid"1
E.warningan E element whose class is "warning" (the document language specifies how class is determined)1
E#myidan E element with ID equal to "myid"1
.c#myidthe element with class="c" and ID equal to "myid"1
E Fan F element descendant of an E element1
*any element2
E[foo]an E element with a "foo" attribute2
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-childan E element, first child of its parent2
E:lang(fr)an element of type E in language "fr" (the document language specifies how language is determined)2
E::beforegenerated content before an E element's content2
E::aftergenerated content after an E element's content2
E > Fan F element child of an E element2
E + Fan F element immediately preceded by an E element2
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:rootan E element, root of the document3
E:nth-child(n)an E element, the n-th child of its parent3
E:nth-last-child(n)an E element, the n-th child of its parent, counting from the last one3
E:nth-of-type(n)an E element, the n-th sibling of its type3
E:nth-last-of-type(n)an E element, the n-th sibling of its type, counting from the last one3
E:last-childan E element, last child of its parent3
E:first-of-typean E element, first sibling of its type3
E:last-of-typean E element, last sibling of its type3
E:only-childan E element, only child of its parent3
E:only-of-typean E element, only sibling of its type3
E:emptyan E element that has no children (including text nodes)3
E:targetan E element being the target of the referring URI3
E:enableda user interface element E that is enabled3
E:disableda user interface element E that is disabled3
E:checkeda 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 s3
E ~ Fan F element preceded by an E element3
A declaration block consists of a pair of braces ({}) enclosing a semicolon-separated list of declarations.

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.[9]

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.[10][11]

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(000, 100%, 50%), hsla(000, 100%, 50%, 80%)).[12]

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)[clarification needed] – 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[13] 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.[14]

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.

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.[15]

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

<h1><font color="red">Chapter 1.</font></h1>
Using CSS, the same element can be coded using style properties instead of HTML presentational attributes:

<h1 style="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>
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:

<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:

<link href="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.

CSS information can be provided from various sources. These sources can be the web browser, the user, and the author. The information from the author can be further classified into inline, media type, importance, selector specificity, rule order, inheritance, and property definition. CSS style information can be in a separate document, or it can be embedded into an HTML document.

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.

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.

CSS priority scheme (highest to lowest)
PriorityCSS source typeDescription
1ImportanceThe "!important" annotation overwrites the previous priority types
2InlineA style applied to an HTML element via HTML "style" attribute
3Media TypeA property definition applies to all media types unless a media-specific CSS is defined
4User definedMost browsers have the accessibility feature: a user-defined CSS
5Selector specificityA specific contextual selector (#heading p) overwrites generic definition
6Rule orderLast rule declaration has a higher priority
7Parent inheritanceIf a property is not specified, it is inherited from a parent element
8CSS property definition in HTML documentCSS rule or CSS inline style overwrites a default browser value
9Browser defaultThe lowest priority: browser default value is determined by W3C initial value specifications
Specificity refers to the relative weights of various rules.[16] 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"[17] (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:

SelectorsSpecificity
h1 {color: white;}0, 0, 0, 1
p em {color: green;}0, 0, 0, 2
.grape {color: red;}0, 0, 1, 0
p.bright {color: blue;}0, 0, 1, 1
p.bright em.dark {color: yellow;}0, 0, 2, 2
#id218 {color: brown;}0, 1, 0, 0
style=" "1, 0, 0, 0
Consider this HTML fragment:

<!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 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.[16] 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".[18] 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.

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 to illustrate inheritance
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;}
is functionally equivalent to this one:

body {
overflow: hidden;
background-color: #000000;
background-image: url(images/bg.gif);
background-repeat: no-repeat;
background-position: left top;
}
Main article: Indentation style
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:[19]

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');
}
CSS 2.1 defines three positioning schemes:

Normal flowInline 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.FloatsA 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 positioningAn 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.[20]
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.

The default value places the item in the normal flow.

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.

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

The item is absolutely positioned in a fixed position on the screen even as the rest of the document is scrolled[20]

The float property may have one of three values. Absolutely positioned or fixed items cannot be floated. Other elements normally flow around floated items, unless they are prevented from doing so by their clear property.

leftThe item floats to the left of the line that it would have appeared in; other items may flow around its right side.rightThe item floats to the right of the line that it would have appeared in; other items may flow around its left side.clearForces the element to appear underneath ('clear') floated elements to the left (clear:left), right (clear:right) or both sides (clear:both).[20][21]
170px HC3A5kon Wium Lie

Download 7
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Tips

Similar threads

Top Bottom