CSS Basics - Structure of CSS style definitions.
The basic building blocks of CSS are rule sets. Each rule set is comprised of a selector and a declaration block. Each declaration block has zero or more declarations, or styles. Here is a basic rule set:
p {
background-color:#ffcc00;
font-size:120%
}









