CSS has 3 different parts to it's composition, and they're all important. To start, it uses items called selectors to determine what part of the document you want to define. Next, CSS uses properties to let you select which property (color, size, border, etc.) you want to edit, while the values actually let you change said property. The standard layout for your css file should be as follows:
selector {
property: value;
property: value1 value2 value3;
}
body {
font-size: 11px;
background-color: white;
}
property: value;
property: value1 value2 value3;
}
body {
font-size: 11px;
background-color: white;
}
A list of the standard properties and their uses can be found in the CSS Resources section.
