CSS Units
CSS Units are a type of measurement for displaying content in certain ways.
| Unit | Explanation |
|---|---|
| % | percent |
| in | inch |
| cm | centimeter |
| mm | millimeter |
| em | For every em, it is that values times the current font size. So 1em would equal the current font size, 2em would equal 2 times the current font size, and so on. |
| ex | Every ex is the x-height of a font (usually about half of the font size) |
| pt (point) | Every pt is equal to 1/72 of an inch. 72pt would equal 1 inch. |
| pc (pica) | Every pc is equal to 12 points. 6pc would equal 1 inch. |
| px (pixels) | Every pixel is a single dot on the computer screen |




