html - Auto stretching vertical columns (divs) -
check fiddle please:
i want following: red column has text, yellow dynamic content, green has nothing, color. want both red , green columns height yellow content. height: 100%
didnt work
you can use negative margins achieve result
the floating divs should wrapped in container overflow:hidden fiddle code
#container { overflow:hidden; } #container div { padding-bottom:2000px; margin-bottom:-2000px; }
Comments
Post a Comment