Forum Moderators: not2easy
.primaryborder {
background: url("index_files/leftBG.jpg"); left; background-repeat: repeat-y;
background: url("index_files/rightBG.jpg"); right; background-repeat: repeat-y;
background: url("findex_files/tableBaseBG.jpg"); bottom; background-repeat: repeat-x; }
However, one the last line seem to work. The leftBG.jpg and rightPG.jpg are missing from the left and right side of the <div>.
Could anyone pls help?
One method is to create a container and then position 3 elements inside it.
The other would be to create 3 elements of the same size and position them in the same coordinates on top of each other, with each having a different background pic and location.
Either way might not be worth the trouble depending on how much you want to do this.
<div class="column" id="a" >content</div>
<div class="column" id="b">x</div>
<div class="column" id="c">content</div>
<div class="column" id="d">x</div>
<div class="column" id="e">content</div>
This seems to work. My lefBG.jpg is now there. However, I couldn't align this element to the center of my browser window dynamically. Any pointers?