Reputation: 701
I'd like to make the column border to reach the footer as in an example
It should work in these two variants:
Thanks !
What do you think about min-height: 430px; ?
Upvotes: 0
Views: 265
Reputation: 140112
You can use a background image that is 1 pixel high and contains a very thin horizontal strip of the background + line(s) that you'd like to have, repeated on the y-axis:
#centered_container { background: url(i/bg.png) 50% repeat-y; }
Since your site seems to be centered, use 50%
to center the background image as well.
Upvotes: 2
Reputation: 37543
Here is a technique that requires no JavaScript and works in a cross-platform manner. It will require a reworking of your css.
http://matthewjamestaylor.com/blog/perfect-2-column-left-menu.htm
Upvotes: 0