Property and Values in CSS
So want can we put down for property and value? Well there are over 100 different things you can put down for property and far more for value. Don't let that put you off, you don't have to memorize all of them because once you know what for example border-right does your going to know border-left as well. And some you might not ever use. A complete list is out side the scope of this tutorial as it would over complicate it, but you can look a my CSS cheat sheets to learn more.
Lets try a few example to see how easy it is.
Breaking that down we get.
For the first line we have selected the body element. And set the property background-color, and there is absolutely not prize to guessing that is changes the background color, or that the value black makes the background black.
Lets try the next line. Here we have chosen to select the a element, or as every one knows it, a link. This one is even more simple that the first. We have the property set as color and the value as red. This will set the text color on the link to red.
The last line changes p, or paragraph tag. This will align all the text to the center, again very simple.