vote up 2 vote down star
1

I want to create a simple box with a header bar containing a title and some tool buttons. I have the following markup:

<div style="float:left">
    <div style="background-color:blue; padding: 1px; height: 20px;">
    	<div style="float: left; background-color:green;">title</div>
    	<div style="float: right; background-color:yellow;">toolbar</div>
    </div>
    <div style="clear: both; width: 200px; background-color: red;">content</div>
</div>

This renders fine in Firefox and Chrome:

However IE7 totally messes up and puts the right floated element to the right of the page:

Can this be fixed?

flag

You might need to give a bit more context for this question. you were saying that content area will contain tables of varying size? – Sam Murray-Sutton Oct 10 '08 at 8:32

4 Answers

vote up 0 vote down check

I fixed it using jQuery to emulate the behaviour of the non-IE browsers:

    // IE fix for div widths - size header to width of content
    if (!$.support.cssFloat) {
        $("div:has(.boxheader) > table").each(function () {
                $(this).parent().width($(this).width());
        });
    }
link|flag
vote up 0 vote down

This is just a quick answer, so I hold my hands up if it doesn't quite work. I think Marko's solution will probably work if you just add min-width rather than width. If you are trying to cater for ie6 as well, you may need to use a hack, as min width is not supported by ie6 and it's descendants.

So this should work with IE7 and other modern browers. Set the min-width to whatever is appropriate.

<div style="float:left; min-width: 200px;">
    <div style="background-color:blue; padding: 1px; height: 20px;">
        <div style="float: left; background-color:green;">title</div>
        <div style="float: right; background-color:yellow;">toolbar</div>
    </div>
    <div style="clear: both; background-color: red;">content</div>
</div>
link|flag
Sorry, min-width has no effect in this case – Kees de Kooter Oct 9 '08 at 16:35
vote up 2 vote down

Specify width in outermost div. If that width in your content div means this is the total width of your box, simply add it to the outermost div, and (optionally) remove it from content, like this:

<div style="float:left; width: 200px;">
    <div style="background-color:blue; padding: 1px; height: 20px;">
    	<div style="float: left; background-color:green;">title</div>
    	<div style="float: right; background-color:yellow;">toolbar</div>
    </div>
    <div style="clear: both; background-color: red;">content</div>
</div>
link|flag
That fixes it. However the content size may not be known up front. On my site it usually contains tables whose width can grow. – Kees de Kooter Oct 9 '08 at 13:53
vote up -1 vote down

Make this <div style="background-color:blue; padding: 1px; height: 20px;"> the parrent of the 2 floating divs also Clear:All

link|flag
Sorry, that did not help. Here are the screenshots: www.boplicity.nl/images/firefox.jpg www.boplicity.nl/images/ie7.jpg – Kees de Kooter Oct 9 '08 at 13:54

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.