| A | B |
| CSS | Cascading Style Sheet, a language used to describe how HTML elements should be styled |
| rule for additional style | text-decoration: underline; |
| rule for the color of your text | color: maroon; |
| rule for the alignment of your text | text-align: center; |
| rule for which font to use | font-family: fantasy; |
| rule for the size of your text | font-size: 20px; |
| rule that sets the background color of the element | background-color: red; |
| rule that sets the color of the border | border-color: red; |
| rule that changes the border width of an element | border-width: 10px; |
| rule that changes the style of border | border-style: solid; |
| rule that moves an element to one side of the page | float: left; |
| rule that generates space around an element | margin: 20px; |
| rule that sets the width of an element | width: 10px; |
| rule that sets the height of an element | height: 10px; |
| Rule | Describes how the elements identified by the selector should change. The change that is being made, such as color: red; |
| CSS Rule-Set | Explains how to display the elements that consists of a property and a value for that property. |
| CSS Selector | Specifies the part of the code which the style should be applied to. |
| CSS Class | Makes it possible to define equal styles for elements by giving them all the same class name |
| External Style Sheet | Separate files that are linked to the HTML page that adds style to a web page |
| border-radius | Determines if lines around the image or text will be an oval or square |
| RGB | rgb(225,220,50); |