I have three divs background-color Red, Yellow and Blue. I am wanting to get the Red div on the left. I want the Yellow div beside the Red. I want the Blue div beside the Red but underneath the Yellow div. I came up with
<html>
<body>
<div style="background-color:Red; height:50%; float: left">Red</div>
<div style="background-color:Yellow; float: left; clear:right">Yellow</div>
<div style="background-color:Blue; float:left">Blue</div>
</body>
</html>
This doesn't work however as the Blue div is not underneath the Yellow div but beside it.