
CSS declaration block
is one or more style properties, enclosed in braces, that affect specific areas of ODS
output. The following code is an example of one declaration block that contains three
style properties.
{
font-family: arial, helvetica, sans-serif;
color: red;
border: 1px solid black;
}
style property
is a visual property, such as color, font properties, and line characteristics, that is
defined in a cascading style sheet file with a reserved name and value. Style
properties are collectively referenced by a declaration block within a cascading style
sheet. Style properties are separated by semi-colons.
In the following code, FONT-FAMILY, COLOR, ...