| A | B |
| STYLE element | Element in the document head that specifies nested text in a style sheet. |
| STYLE attribute | Used to insert an inline style within an element's start tag. |
| font-size property | In CSS, sets the font size of an element. |
| SPAN element | A generic inline element that has no formatting characteristics of its own, but which can be used to create custom inline elements by using styles. |
| CLASS attribute | Assigns an element to a class. Any styles assigned to the class are then applied to the element. |
| display property | Style property that can be used to turn the display of an element off and on in supporting browsers. |
| font-family property | In CSS, specifies a specific or generic font-family name or a font-family list. |
| color property | In CSS, specifies the foreground color of an element, using a color name or hexadecimal RGB code. |
| background property | In CSS, specifies a background color or background image for an element. |
| a:link | In CSS, an anchor pseudo-class that specifies the properties of an unvisited link. |
| a:visited | In CSS, an anchor pseudo-class that specifies the properties of a visited link. |
| a:hover | In CSS, an anchor pseudo-class that specifies the properties of a link when the mouse pointer is hovering over it. |
| a:active | In CSS, an anchor pseudo-class that specifies the properties of an activated link. |
| single selector | Sets properties for a single element. |
| group selector | Sets properties for a comma-separated list of elements. |
| contextual selector | Sets properties for elements only within a certain context. |
| class selector | Sets properties for elements belonging to a certain class. |