Home › Forums › CSS › Multiple Backgrounds › Re: Multiple Backgrounds
June 6, 2010 at 7:04 pm
#77199
Participant
Add a new div or element inside.
For example;
The repeating background could be the body background, then add a new div with a id
Code:
body {
background: url(“images/main_bg.jpg”) repeat #000;
}
background: url(“images/main_bg.jpg”) repeat #000;
}
div#interior {
width: ___px;
height: ___px; (or leave blank for auto)
margin: 0px auto;
background: url(“images/interior_bg.jpg”) no-repeat center top #555;
}