Why doesn't the background image of left column at http://220.89.242.19:8500/test/04.cfm.
go to the bottom line of "left" ?
Can you fix it, please?
| SitePoint Sponsor |





Why doesn't the background image of left column at http://220.89.242.19:8500/test/04.cfm.
go to the bottom line of "left" ?
Can you fix it, please?





Because this is CSS here, not tables. You div's won't autostretch. Since it's on the left and your only tile, why not give it to the body instead and work around that?![]()





How can I make my div autostrechable?Originally Posted by mstwntd
What does "tile" mean here?Originally Posted by mstwntd
(I am not a native speaker of English)
How can I give it to the body?Originally Posted by mstwntd





Tile means repeating the same image.What you have done.
I think I put it in the wrong words before, you can make it auto stretch 100% but it's trickier then using table cells.
Have a look at the www.altra.com.au code for reference on 100% height. There are many limitations when compared to tables though.
Give it to the body just like you would to any other element:
Code:body {background: url(image location here) top left repeat-y;}
Bookmarks