Selectors and Declarations

When using CSS either in your stylesheet or defined inside <style></style> tags there are 2 basic things you need to learn.
Selectors
Let’s examine a very basic and very short CSS file.

h1 {
color:#ffff00;
border-bottom:1px solid #ccc;
}

This code gives all h1 tags a 1 pixel bottom grey border, and makes the text yellow. The [...]