This is very similar to this thread http://www.webmaster-talk.com/css-fo...sitioning.html but I did not want to hijack the thread. If you choose to merge I agree.
I know the following will work. Since this code will be repeated more than once on the same page I am concerned that I am creating a div mania page when the there is a more proper way to do the same thing. I mean compared to tables, tr and td to do the same thing it is very simple code.
This code deals with a single column of a page and is comprised of a full width image at the top, bottom and a bg image to fill in the content area.
<div> <!-- column width defined in SS -->
<div><img src="./images/top.png" /> </div>
<div> (bg image set in stylesheet)
content as desired fluid height.
</div>
<div><img src="./images/bottom.png" /> </div>
</div> <!-- (the column) -->
|