Have three divs in a container that I want to float over a large div. How do I do this? I have this so far…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html><head>
<style type="text/css">
<!--
div.HeaderContainer { float:left; }
div.One { float:left; border: 1px solid; }
div.Two { float:left;}
div.Three { float:left; border: 1px solid; }
div.Content{ float:none; }
-->
</style>
</head>
<body>
<div class = "HeaderContainer">
<div class="One">one</div>
<div class="Two" id="tdAmplicon">two</div>
<div class="Three">three</div>
</div>
<div class="Content" >content</div>
</body>
</html>
However, this only puts the content div to the left right of the HeaderContainer div. How do I make the content div float below the HeaderContainer div? Thanks.
will put the content div below
HeaderContainerhttp://jsfiddle.net/ZDE6C/