Basic Selectors
p { color: green; }
#idName { font-size: 20px; }
.className { font-weight: bold; }
Combinators
div p { color: red; }
div > p { color: blue; }
Next: CSS Colors & Fonts
p { color: green; }
#idName { font-size: 20px; }
.className { font-weight: bold; }
div p { color: red; }
div > p { color: blue; }
Next: CSS Colors & Fonts