Attaching a Background Graphic
You can attach a background graphic to the document or any element, just as you can with background color. There are more ways to control backgrounds with CSS, though, giving you a broad range of options when it comes to applying visual design to your site. By combining a page background with element backgrounds, you can create layers of images and numerous special effects.Background graphics are typically either small tiles used to repeat to create a wallpaper pattern, or horizontal or vertical graphics with sections of color, imagery, and even typographic features. You can find many predesigned backgrounds online (see Figure 8-6), or you can create your own.
Figure 8-6. A background texture for a wallpaper effect I found at http://www.grsites.com/textures/.

Figure 8-7 shows the results of the tiled background within a web browser. You'll notice how the image tiles into the entire viewable area, creating an intriguing look.
body {background-image: url(gray.jpg);}
Figure 8-7. Tiling a background in the body.

In this case, all header backgrounds would use the background tile.QUANTUM LEAP: GROUPING SELECTORSThe rule I just wrote with all headers separated by commas is a means of grouping selectors that all take the same rules. This way, I can group any selectors that share rules by naming the selector and following it with a comma:
h1, h2, h3, h4, h5, h6 {background-image: url(gray.jpg);}
This way, H1, p, and the class of footertext will all be colored teal. You can continue writing additional rules for unshared styles:
h1, p, .footertext {color: teal;}
With both of these rules in the same style sheet, both styles would be applied, resulting in the h1 being 24 pixels with a color of teal.
h1 {font-size: 24px;}