Web standards designers often need to make use of display:float to handle things like columns, navigation lists, and more. Usually these floats are followed by something like <div style="clear:both"></div>. It turns out there is an easier way.
I was reading 35 Designers x 5 Questions and saw a link for a way to clear floats without clear divs. The code that comes with the article is a bit confusing and sloppily written, but it works!
So, to make things easier to understand, I wrote my own example. The code below will do it for you.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Easy Floats</title>
<meta http-equiv="Content-Type" content="text/html;charset=iso-8859-1">
<style>
h1 {
background-color:#FFCCCC;
margin:auto;
width:500px;
text-align:center;
margin-bottom:0px;
}
div#outer{
width:500px;
overflow:auto;
padding-bottom:0px;
background-color:#AAAAAA;
margin:auto;
}
div#column1 {
float:left;
background-color:#CCFFCC;
width:200px;
}
div#column2 {
float:left;
background-color:#CCCCFF;
width:300px;
}
div#footer{
width:500px;
overflow:auto;
padding-bottom:0px;
background-color:#FFCCFF;
margin:auto;
}
div p{
padding:10px;
}
</style>
</head>
<body>
<h1>title</h1>
<div id="outer">
<div id="column1">
<p>
Left
<br>
Column
<br>
Floated
<br>
Left
</p>
</div>
<div id="column2">
<p>
Right Column float with no clears below it...
<br>
</p>
</div>
</div>
<div id="footer">
<p>
FOOTER not cleared...
</p>
</div>
</body>
</html> |