--- title: "css" aliases: tags: - cosc203 --- # Structure ```css h1(selector) { color(property): red(value/function); \ font-size: 5em; / - declarations } ``` # Selectors Types - Universal: `*` - Type: `main` - Class: `.myclass` - Id: `#myID` adjacent: `p + li {...}` descendant: `p li {...}` ```css /* selects any that is inside a

, which is inside an

*/ article p span { } /* selects any

that comes directly after a