April 2005
Intermediate to advanced
336 pages
6h 33m
English
CSS enables you to control the way backgrounds tile. This is done using the background-repeat property along with the appropriate value.
The horizontal axis, also referred to as the x-axis, enables you to tile a background along the element's horizontal axis, but not the vertical one:
body {background-image: url(gray.jpg); background-repeat: repeat-x;}
Figure 8-8 shows the results.
Figure 8-8. Controlling horizontal tiling with the background-repeat property.

Similarly, you can repeat a background tile along the vertical ...
Read now
Unlock full access