CSS Syntax
The CSS syntax is made up of three parts: a selector, a property and a value.
1
selector { property: value; }
The selector is normally the HTML element you wish to define, the property is the attribute you wish to change, and each property has a value. After the property is a colon, and a semi-colon [...]
↧