I've got a parent div
floated left, with two child div
s 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 div
s, 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 div
s, 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 div
s?