vote up 5 vote down star

I've got a parent div floated left, with two child divs that I need to float right.

The parent div should (if I understand the spec correctly) be as wide as needed to contain the child divs, and this is how it behaves in Firefox et al.

In IE, the parent div expands to 100% width. This seems to be an issue with floated elements that have children floated right. Test page:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">

<head>
<title>Float test</title>
</head>

<body>
<div style="border-top:solid 10px #0c0;float:left;">
    <div style="border-top:solid 10px #00c;float:right;">Tester 1</div>
    <div style="border-top:solid 10px #c0c;float:right;">Tester 2</div>
</div>
</body>

</html>

Unfortunately I can't fix the width of the child divs, so I can't set a fixed width on the parent.

Is there a CSS-only workaround to make the parent div as wide as the child divs?

flag

78% accept rate
1  
here's a very good example of what the issue is: css-class.com/test/css/… – Steve Perks May 12 at 18:36
Ooh yes, good test page. – Paul D. Waite May 12 at 20:35

5 Answers

vote up 1 vote down

Firstly, why aren't you using inline styles?

I'd use this to target IE with a separate css file:

<!--[if lt IE 7]>
<link rel="stylesheet" href="ie6.css" type="text/css" />
<![endif]-->

I know this isn't a direct question, but IE is ALWAYS a pain to deal with! Most designers/developers that I know will make a totally new stylesheet for IE.

link|flag
Yup, sorry: the code above is just example code to highlight the bug. I used inline styles to make it slightly easier to see what’s going on. – Paul D. Waite May 15 at 10:33
vote up 1 vote down

I came up with a solution using text-align:right and display:inline.

Try this:

<div style="border-top:solid 10px #0c0; float: left;">
    <div style="margin-top: 10px; text-align: right;">
    	<div style="border-top:solid 10px #c0c;	display: inline;">Tester 2</div>
    	<div style="border-top:solid 10px #00c; display: inline;">Tester 1</div>
    </div>
</div>

Notice I had to switch the order of the "tester" boxes in the markup to show up in the same way as your example. I think there is an alternative that margin-top on the new container, but I don't have time looking into right now.

If you want cleaner styling for all other browsers try this:

<div style="border-top:solid 10px #0c0; float: left;">
    <div style="float: right;">
    	<div style="border-top:solid 10px #c0c;	float: left;">Tester 2</div>
    	<div style="border-top:solid 10px #00c; float: left;">Tester 1</div>
    </div>
</div>

There are some different issues that can come up when you want to layout stuff around those boxes. However, I think those issues will be much easier to solve than this one.

Hope this was helpful for you.

link|flag
vote up 0 vote down

I couldn't come up with a CSS-only solution that fits your requirements, but if you want to use a JavaScript solution, maybe the following code can help? I did not alter the style of the divs, I only added the IDs main, sub1, and sub2 to your divs.

var myWidth = document.getElementById('sub1').offsetWidth + document.getElementById('sub2').offsetWidth;
document.getElementById('main').style.width = myWidth;
link|flag
Sure, that should work JavaScript-wise—although, if I was going down the JavaScript route, I’d probably check whether Dean Edwards’ IE7 script fixed this particular issue (it fixes a bunch of others). – Paul D. Waite May 12 at 16:28
vote up 0 vote down

What about using a single-cell table instead of the outer div? It may need some more work to have everything aligned properly, but the table doesn't expand.

link|flag
Unfortunately, the table seems to force the child divs to wrap, so they're above each other instead of side to side. – Paul D. Waite May 12 at 11:30
OK, how about nested tables? The outer table has float:left and one cell. In that cell there is an inner table with float:right and two cells. In each of the two cells is the content of your two inner divs. It's more involved than just the divs, but it works (on my XP/IE7, at least). – Oz May 12 at 12:40
Ah, achieve the horizontal layout of the child divs with a table. Definitely a possibility, although technically you're not meant to use tables for layout (I think you fail a Web Content Accessibility Guideline if you do). Also, this is actually for a site that has two layouts: one left-to-right, and one right-to-left. Ideally we don't want to amend the HTML for the layouts (beyond having a class indicating which layout is in use), and using tables would put an end to that. – Paul D. Waite May 12 at 14:34
vote up 0 vote down

Something you could start with is this:

<DIV style="BORDER: #0c0 10px solid; FLOAT: left; MARGIN-LEFT: 100%;">
<DIV style="BORDER: #00c 10px solid;FLOAT: right;">
Tester 1
</DIV>
<DIV style="BORDER: #c0c 10px solid;FLOAT: right;">
Tester 2
</DIV>
</DIV>

The result of that seems to be at least in the ballpark of what you're looking for. Obviously, you'd want to tweak it for your needs, and probably add some css logic to only apply it to browser < IE 7.

If that's not exactly what you're looking for, try playing with some negative margins.

link|flag
Unfortunately that doesn’t seem to work on my test page: the child divs wrap, so they're above each other instead of side to side. Also, at least in IE 7, the 100% margin takes up all the available space, so the parent div is positioned outside of its parent. – Paul D. Waite May 14 at 9:17

Your Answer

Get an OpenID
or

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