Is there a solid cross browser solution for fixed and fluid CSS columns? I need one column to be fixed on the left hand side, and another column to be fluid on the right hand side.
Below is a snippet of my code - .promoImg
and .promoContent
float alongside one another. #recommends
is 90% of the browser width, .promoImg
needs to fix at 120px and I'd like the .promoContent
to stretch fluid.
<div class="promoBlock ">
<div class="promoImg">
fixed content 300px
</div>
<div class="promoContent">
fluid content
</div>
</div>