| CSS Selectors | |
| HTML Tags | |
| BODY {background-color: lightgreen } B {color: red} H1 B {color: darkblue} |
|
| User-defined Classes | |
| <STYLE> div.GreenBold {color: green; font-weight: bold} </STYLE> ... <div CLASS="GreenBold"><p>Green & Bold</p> </div> |
|
| User-defined IDs | |
| <STYLE> #SmallCaps {text-transform: uppercase; font-size: xx-small} </STYLE> ... <p ID="SmallCaps">Upper Case & Smaller!</p> |
|