The main concept of the CSS markup language is matching UI elements to property values. Different ways to identify a UI element are called selectors and most CSS statements look as follows:
selector-name {
property-name1: value1;
property-name2: value2;
/* ... */
}
To better see how it works, let's review a small example.