just use display as block, because you are floating left, that way you would have to assign , the width so they don't move out of position, once the text is added, the height will,grow automatically, min-height, does not work on older browsers and will be treated as height, which is terrible :) http://www.webtoolkit.info/css-clearfix.html you have a beautiful css solution to your float left problem, it's used on containers to keep the div natural –
yes, check if you have
or or other elements, that have predefined padding, and margin, :) they can be a bit of pain in the ass :)
I recommend using clearfix, because it works well with, inspect element on web developer tools such as firebug, and google web dev tools :)
so you have full control here is the code :)
<div class="boxContainer clearfix">
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
<div class="box"></div>
</div>
.boxContainer{
width: 800px;
height: auto;
}
.box{
float: left;
min-height: 150px;
width: 400px;
display: block;
}
/* I would put this at the top of the page, and minimise the newlines :) if you want to remove the "." (dot) then use this content: "\00A0"; which puts a whitespace, */
.clearfix:after {
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix {
display: inline-block;
}
html[xmlns] .clearfix {
display: block;
}
* html .clearfix {
height: 1%;
}
<p>or<h1>or other elements, that have predefined padding, and margin, :) they can be a bit of pain in the ass :) – Val Oct 31 '11 at 11:23