Issue
check this fiddle please:
I want the following: the red column has some text, the yellow is the dynamic content, the green has nothing, just a color. I want both red and green columns to be as height as the yellow content. height: 100%
didnt work
Solution
You can use negative margins to achieve the result
The floating divs should be wrapped in a container with overflow:hidden This is the fiddle This is the code
#container {
overflow:hidden;
}
#container div {
padding-bottom:2000px;
margin-bottom:-2000px;
}
Answered By - Fico
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.