posted 16 years ago
Well it is not that pretty, but you could set the height to 100% and set a height for wrapper or holder div.
[/code]
<style type="text/css">
#div1, #div2, #div3{ height:100%;}
#div1{
width: 250px; float: left; background-color: #CC5511;
}
#div2{
width: 100px; float: left; background-color: #55CC11;
}
#div3{
width: 150px; float: left; background-color: #1155CC;
}
#holder{
height: 60px;
}
</style>
<div id="holder">
<div id="div1">foo bar text that is long and long and long</div>
<div id="div2">asdsad asd asd sad a sdsa d sad </div>
<div id="div3">askljd laksj as ldj lkasjd kasd lsadkj sadk</div>
</div>
[/code]
Probably not what you want...but it is 1:30AM on a Friday and I am off to bed.
Eric