# CSS ## Applying CSS to HTML ### Inline CSS The style only applies to one element at a time. ```html ``` ### Embedded CSS The style is not shared but only applies to one HTML file. ```html ``` ### External CSS - Shared resource, can be referenced from multiple pages. - Can be cached, reduced HTML file size & bandwidth. ```html ``` ## [CSS Selectors](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Selectors) A CSS selector points to an html element to style. ```css selector { property: value; property: value; } ``` ### Multiple Selectors ```css selector1, selector2 { property: value; } ``` ### Nested Selectors Used to select tags nested in other tags. ```css outerSelector innerSelector { property: value; } ``` ### ID Selector Can only apply to one element in a page. ```css #selector { property: value; } /* selects */ ``` ### Class Selector Many elements can have the same class, classes are used to group HTML elements together. ```css .selector { property: value; } /* selects */ ``` ### Universal Selector ```css * { property: value; } /* selects every HTML element */ ``` ### Descendant selector (space) Selects an element that resides anywhere within an identified ancestor element. ```css article h2 { property: value; } ``` ```html

title

subtitle

subtitle

``` ### Direct child selector (`>`) Selects an elements that resides immediately inside an identified parent element. ```css article > p { property: value; } ``` ```html

Lorem ipsum dolor sit amet

This paragraph will be selected

Lorem ipsum dolor sit amet

``` ### General sibling selector (`~`) Selects an element that follows anywhere after the prior element. Both elements share the same parent. ```css h2 ~ p { property: value; } ``` ```html

Lorem ipsum dolor sit amet

title

This paragraph will be selected

Lorem ipsum dolor sit amet

This paragraph will be selected

Lorem ipsum dolor sit amet

``` ### Adjacent sibling selector (`+`) Selects an element that follows directly after the prior element. Both elements share the same parent. ```css h2 + p { property: value; } ``` ```html

Lorem ipsum dolor sit amet

title

This paragraph will be selected

Lorem ipsum dolor sit amet

Lorem ipsum dolor sit amet

Lorem ipsum dolor sit amet

``` ### Namespace Separator (`|`) The **namespace** separator separates the selector from the namespace, identifying the namespace, or lack thereof, for a type selector. ```css @namespace url(""); /* specific namespace */ namespace|selector { property: value; } /* any namespace */ *|selector { property: value; } /* no namespace */ |selector { property: value; } ``` ```css @namespace svg url('http://www.w3.org/2000/svg'); a { color: orangered; text-decoration: underline dashed; font-weight: bold; } svg|a { fill: blueviolet; text-decoration: underline solid; text-transform: uppercase; } ``` ```html

This paragraph has a link.

Link created in SVG ``` ### Column Selector (`||`) The column combinator (||) is placed between two CSS selectors. It matches only those elements matched by the second selector that belong to the column elements matched by the first. ```css column-selector || cell-selector { property: value; } ``` ### Attribute Present Selector (`tag[attr]`) `a[target]{ property: value; }` will match ```html click here ``` ### Attribute Equals Selector (`=`) `a[href="https://google.com"] { property: value; }` will match ```html search on google ``` ### Attribute Contains Selector (`*=`) `a[href*="login"] { property: value; }` will match ```html login page ``` ### Attribute Begins With Selector (`^=`) `a[href^="Https://"] { property: value; }` will match ```html The BBC ``` ### Attribute Ends With Selector (`$=`) `a[href$=".pdf"] { property: value; }` ```html download menu download song ``` ### Attribute Spaced Selector (`~=`) `img[alt~="child"] { property: value; }` ```html a small child a-small-child asmallchild ``` ### Attribute Hyphenated Selector (`|=`) `p[lang|="en"] { property: value; }` ```html

English

American english

Français

``` ## [Pseudo-Classes](https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-classes) Pseudo-classes can style elements based on their current state. They must be specified after the base case. ```css selector:pseudo-class { property: value; } ``` ### Link Pseudo-Classes `a:link {...}` selects only `` tags that have `href` attribute, same as `a[href]`. `a:visited {...}` selects links that have already been visited by the current browser. ### User Action Pseudo-Classes `a:hover {...}` selects a link when the mouse rolls over it (hover state). `a:active {...}` selects the link while it's being activated (clicked or otherwise). `selector:focus {...}` selects an element when the user focuses on it (e.g. tab w/ keyboard). Often used on links, inputs, text-areas. ### User Interface State Pseudo-Classes `input:enabled {...}` selects an input that is in the default state of enabled and available for use. `input:disabled {...}` selects an input that has the attribute. `input:checked {...}` selects checkboxes or radio buttons that are checked. `input:indeterminate {...}` selects checkboxes or radio button that has neither selected nor unselected. ### Structural & Position Pseudo-Classes `selector:first-child {...}` selects an element if it's the first child within its parent. `selector:last-child {...}` selects an element if it's the last element within its parent. `selector:only-child {...}` will select an element if it is the only element within a parent. `selector:first-of-type {...}` selects the first element of its type within a parent. `selector:last-of-type {...}` selects the last element of its type within a parent. `selector:only-of-type {...}` selects an element if it is the only of its type within a parent. `selector:nth-child() {...}` selects elements based on a simple provided algebraic expression (e.g. "2n" or "4n-1"). Can select even/odd elements, "every third", "the first five", etc. `selector:nth-of-type() {...}` works like `:nth-child` in places where the elements at the same level are of different types. `selector:nth-last-of-type() {...}` like `:nth-of-type` but counts up from the bottom instead of the top. `selector:nth-last-child() {...}` like `:nth-child` but counts up from the bottom instead of the top. ### Empty & Negation Pseudo-Classes `selector:empty {...}` selects elements with no content (empty tags). `selector:not() {...}` selects elements that do not have a certain tag, attribute, class, ID, etc. ## [Pseudo-Elements](https://developer.mozilla.org/en-US/docs/Web/CSS/Pseudo-elements) Dynamic elements that don't exist in the document tree. When used within selectors allow unique parts of the page to be stylized. Only one pseudo-element may be used within a selector at a given time. ### Textual Pseudo-Elements `selector::first-letter {...}` selects the first letter of the text within an element. `selector::first-line {...}` selects the first line of text within an element. ### Content Pseudo-Elements `selector::before {...}` creates a pseudo-element before, or in front of, the selected element. `selector::after {...}` creates a pseudo-element after, or behind, the selected element. **These pseudo-elements appear nested within the selected element, not outside of it.** ```css selector:: { property: value; content: " (" attr(attribute_name) ")"; property: value; } ``` ### Fragment Pseudo-Elements `selector::selection {...}` identifies part of the document that has been selected, or highlighted, by a user's actions. ## CSS Cascading The browser assigns different priorities to CSS depending on the type of selector. 1. Inline CSS (Most Important) 2. ID selector 3. Class selector 4. Element selector (Least Important) The browser also assigns priority based on the specificity of the selection. More specific selectors have higher priority. Rules lower in the file overwrite higher rules in the file. ### Cascading Override With `!important` The `!important` declaration overrides any other declaration. Using it is very bad practice because it makes debugging more difficult by breaking the natural cascading in stylesheets. Only use `!important` when: - overriding foreign CSS (e.g. from a library) - overriding inline CSS ```css selector[style*="property:value"] { property: value !important; } ``` ### Specificity A weight is applied to a CSS declaration, determined by the number of each selector type: - `1-0-0`: ID selector - `0-1-0`: Class selector, Attribute selector, Pseudo-class - `0-0-1`: Element Selector, Pseudo-element - `0-0-0`: Universal selector (`*`), combinators (`+`, `>`, `~`, `||`) and negation pseudo-class `:not()` > **Note**: The selectors declared inside `:not()` contribute to the weight. ## [Units](https://developer.mozilla.org/en-US/docs/Learn/CSS/Building_blocks/Values_and_units) ### Absolute Length units | Unit | Name | Equivalent to | | ------ | ------------------- | -------------------- | | `cm` | centimeters | 1cm = 38px = 25/64in | | `mm` | Millimeters | 1mm = 1/10th of 1cm | | `Q` | Quarter-millimeters | 1Q = 1/40th of 1cm | | `in` | Inches | 1in = 2.54cm = 96px | | `pc` | Picas | 1pc = 1/6th of 1in | | `pt` | Points | 1pt = 1/72th of 1in | | `px` | Pixels | 1px = 1/96th of 1in | ### Relative Length Units | Unit | Relative to | | ------ | ------------------------------------------------------------------- | | `rem` | Font size of the root element. | | `em` | Font size of the parent or the element itself | | `ex` | x-height of the element's font. | | `ch` | The advance measure (width) of the glyph "0" of the element's font. | | `lh` | Line height of the element. | | `vw` | 1% of the viewport's width. | | `vh` | 1% of the viewport's height. | | `vmin` | 1% of the viewport's smaller dimension. | | `vmax` | 1% of the viewport's larger dimension. | | `%` | Relative to the parent element | ## Common Element Properties ### Color ```css selector { color: color-name; color: #; color: rgb(); color: hsl(); } ``` ### Background ```css selector { background: / ; background-image: ; background-position: ; background-position: ; background-position: background-size: ; background-size: ; background-size: , ; /* multiple background */ background-repeat: ; background-repeat: ; background-attachment: ; background-origin: ; background-clip: background-color: ; background-color: color-name; background-color: #; background-color: rgb(); background-color: hsl(); } ``` ### Font ```css selector { font: