Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Grackle Design

    (@mikedark)

    looks like it may be back to tables for me. sigh

    Michael

    (@alchymyth)

    why don’t you try to use ‘float:right;’ on the #right style, and no margin ?

    #right {
    	float:right;
            padding:1em;
    }

    Try adding a container and an element to clear the floats, eg.

    <div>
    	<div id="left">
    		left column content here
    	</div>
    	<div> id="right">
    		right column content here
    	</div>
    	<div style="clear:both"></div>
    </div>

    Thread Starter Grackle Design

    (@mikedark)

    @ t310s_ this did not work

    @alchymyth this worked! thanks! i guess i should have thought of it. and from dealing with floats in the past i did not think you could float two images on the same line. maybe it works because they are in separate containers though.

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘CSS floating columns problem in IE8’ is closed to new replies.