Интересует почему в FF и Opera родительский блок не изменяет свою высоту по отношению к вложенным блокам. IE красавец в этом вопросе.Код:<!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'>
<head>
<style><!--
body {background-color: aqua;}
#container {width: 600px;margin: 0 auto;background-color: white;height: auto;}
#left {float: left;width: 200px;height: 200px;background-color: yellow;}
#content {width: 200px;float: left;background-color: red;}
#right {float: right;width: 200px;height: 200px;background-color: green;}
#bottom {width: 100%;clear: both;background-color: blue;}
--></style>
</head>
<body>
<div id="container">
****<div id="left">LEFT</div>
****<div id="content">CONTENT</div>
****<div id="right">RIGHT</div>
****
</div>
Почему в FF и Opera у блока container высота меньше чем у вложенных блоков ?
</body>
</html>