Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Equal Height Columns in CSS Re: Equal Height Columns in CSS

#114321
Taufik Nurrohman
Participant

My favourite equal height columns hack:

.col-group {
overflow:hidden;
}

.col-group .col {
width:50%;
float:left;
display:inline;
margin-bottom:-9999px;
padding-bottom:9999px;
}
<div class="col-group">
<div class="col"> ... </div>
<div class="col"> ... </div>
</div>