r...@catjuggling.com wrote:
>> 2- use divs to simulate full rows, then place all the four elements of
>> each row inside it, size them appropriately and float them all to the 
>> left.
>>     
>
> I wanted to try a variation on idea #2
>
> http://www.mcmullincreative.com/testgrid/
>
> Russ 
>
>   


You want to feed compliant browsers *min-height*, rather than height. 
Otherwise the block will not expand vertically to contain larger text. 
IE/6.0 does not support min-width or min-height; consequently, feed it 
the hack below:

.infobox {
width: 440px;
height: 100px; <----------------- :: delete ::
min-height: 100px; <----------- :: add ::
border: solid 1px #ccc;
float: right
}


* html .infobox {height: 100px;} /* Only IE/6.0 sees this */
______________________________________________________________________
css-discuss [cs...@lists.css-discuss.org]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to