I've done alot of reading on here, and cannot find a solution to my answer.
I have a container div, with multiple floated left divs, as per the html below.
<div class="catbg0" id="b1">
<div class="catb1">#</div>
<div class="catb2">Board Name</div>
<div class="catb3">Topics</div>
<div class="catb4">Posts</div>
<div class="catb5">Last Post</div>
<div class="clearboth"></div>
</div>
My problem is that .catbg0 does not have a specific height, the content of .catb2 pushes it down to its height, and as the content can vary I cant set a specific height. I want the rest of the .catb classes to go to 100% height of the .catbg0 class, but setting height: 100%; does not work.
Below is the CSS that relates to the above.
.catb1 {float: left; width: 9%; height: 100%; min-height: 100%;}
.catb2 {float: left; width: 52%; height: 100%; min-height: 100%;}
.catb3 {float: left; width: 8%; height: 100%; min-height: 100%;}
.catb4 {float: left; width: 8%; height: 100%; min-height: 100%;}
.catb5 {float: left; width: 23%; height: 100%; min-height: 100%;}
.clearboth {clear: both; height:0; width: 0; margin: 0; padding: 0;}
Any ideas? Thanks.
As I know only block with position:absolute may be 100% height and its children too.
If you sure that .catb2 has the biggest height of .catb* try to add wrapper:
CSS
P.S. Maybe it'll be usefull for you - A new micro clearfix hack
I'm not quite sure. But giving the container(catbg0) a overflow: hidden; may work. Usually what this does is stretch the div which it is applied to(When a specific height isn't set).
Note: it's still an overflow, long words etc. and divs will just keep going since the overflow masks the div.