Hi,
I have a 3 column layout; leftpanel, content, rightpanel.
The rightpanel houses the site navigation. The leftpanel is empty.
I want to apply a vertical tiled background image to the leftpanel DIV so that is scales vertically with the other two columns. Can this be done, or will the tiled background only work if the DIV contains something?
CSS is:
#leftpanel {
background-image: url(images/tile.png) repeat-y left top;
float: left;
margin-left: 5px;
width: 95px;
}
html is:
<div id="leftpanel">
<!--img src="images/tile.png" alt="" width="95" height="14" /-->
</div>
*Note, I can get this working by including the commented out image element above, but it doesn't tile automatically to the footer of my page, which is what I'm after.*





Bookmarks