| Code | Unit | Comment |
|---|---|---|
| px | Pixel | Monitor dependent |
| pt | Point | 1/72 of an inch |
| pc | Pica | 1/6 of an inch. |
| em | Em | Width of M in current font |
| ex | Ex | Height of x in current font |
| in | Inch | |
| mm | Millimeter | |
| cm | Centimeter | |
| % | Percent | Relative to current font |
Display in Browser:
This is very important.
| State | Selector |
|---|---|
| Unvisited | a:link |
| Being Visited | a:active |
| Already Visited | a:visited |
| Mouse over Link | a:hover |
Display in Browser:
A <span>
tag is used with an inline style.
It image repeats only in the y (vertical) direction.
It is fixed when the page is scrolled. Only the text scrolls.
body { font-size: 130%;
color: maroon;
background-color: white;
background-image: url('images/pink.gif');
background-position: 1in 0.5in;
background-attachment: fixed;
background-repeat: repeat-y; }