This one is really getting my goat. I need to float Container1 and Container 2 to the right and have them butt up against each other as they are now. I also need to float items inside Container2 to the right so they stack on each other. Problem is if I set anything inside Container2 (sample text 2, sample text 3) to float right it makes Container2 width 100% or something.
This could be solved by giving Container2 a specific width but that is not possible as all of this is dynamic content. I need Container2 to grow as i stack things inside it.
Is there any way around this? It is only a problem in ie7 all other browsers seem to be fine. This is driving me mad.
<div>
<div style="width: 100px; height: 100px; background: green; float: left;">
</div>
<div id="Container1" style="height: 100px; border: 1px solid #000000; float: right;">
sample text 1
</div>
<div id="Container2" style="height: 100px; border: 1px solid #000000; float: right;">
<div style="float: right; border: 1px solid #FF0000;">sample text 2</div>
<div style="float: right; border: 1px solid #00FF00;">sample text 3</div>
</div>
</div>
<table>. – Blender Apr 22 '11 at 22:44