Hi all, I'm trying to create a website and it's design is forcing me to use multiple backgrounds. I'm talking about a technique that looks like this
<div id="left">
<div id="left_1">
<div id="left_2">
</div>
</div>
</div>
#left{
width:235px;
margin:0; padding:0; float:left;
background:url(../images/left_middle.jpg) top left repeat-y;
}
#left_1{
width:235px;
margin:0; padding:0; float:left;
background:url(../images/left_top.jpg) top left no-repeat;
}
#left_2{
width:218px;
margin:0; padding:0 0 0 17px; float:left;
background:url(../images/left_bottom.jpg) bottom left no-repeat;
}
At the same time a have to create an equal div/column height structure for the page.
<div id="container">
<div id="left">
<div id="left_1">
<div id="left_2">
</div>
</div>
</div>
<div id="center">
</div>
<div id="right">
<div id="right_1">
<div id="right_2">
</div>
</div>
</div>
</div>
The #left, #center and #right divs should have the same height and look full with background. I have read a lot of techniques through internet about the equal-height-divs but adding the multiple backgrounds issue, makes it impossible for me to find a solution here.
I was wondering if someone could help me out there. Thanks in advance