Styling the Second Container
The second background image will be applied to the #container2 element using background: url(back02.gif) repeat-y 80% 0; as shown in Listing 21.7 and Figure 21.7. Like the preceding #container rules, this will place 80% of the image 80% of the way across the browser window. The image is repeated down the y axis.
Listing 21.7. CSS Code for Styling the Second Container
h2, h3
{
margin-top: 0;
}
#container
{
background: url(back01.gif) repeat-y 50% 0;
}
#container2
{
background: url(back02.gif) repeat-y 80% 0; }
}
|