Topic: A DIV height issue (with example)
A wrap, a margin div and a content div:
<div class="wrap">
<div class="margin" style="WIDTH: 150px; FLOAT: left">
... some content that stretches this div on the height for about 1500px or something large...
</div>
<div class="content" style="WIDTH: 400px; FLOAT: left; BACKGROUND-COLOR: red">
...content that streches this div on the height for only 500px (less than the margin div)...
</div>
</div>
Now, the issue is I want the div with the red background color (the content div) to allways have the same height (or more, but NOT less) as the margin div.
The code above in "action": http://www.garaget.org/temp/asdf.html
Thanks.
/C
Edit: the classes are empty and are shown only for examplification