Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 289 Bytes

cssselectors.md

File metadata and controls

10 lines (8 loc) · 289 Bytes

CSS Selectors

CSS Selectors select HTML elements on which to apply particular styling rules. For example, in the following CSS rule set, the h1 selector applies orange color and italics to all content in the h1 element.

h1 {
    color: orange;
    font-style: italic;
}