2 div-Tags haben, jedes als eine Spalte, die nebeneinander schwebt, und ein weiteres div-Tag, um die Schwebezustände zu löschen, dann schließlich ein weiteres div, das die Fußzeile ist:
<div id="col1"></div>
<div id="col2"></div>
<div clear="c"></div>
<div id="footer"></div>
<style type="text/css"><!--
#col1{
float:left;
width:80%;
}
#col2{
float:right;
width:20%;
}
.c{
clear:both;
}
#footer{}
--></style>
Damit ist es auch einfacher, eine 3-Spalten-Ansicht zu erstellen.
<div id="col1"></div>
<div id="col2"></div>
<div id="col3"></div>
<div clear="c"></div>
<div id="footer"></div>
<style type="text/css"><!--
#col1{
float:left;
width:200px;
}
#col2{
float:right;
width:300px;
}
#col3{
width:400px;
margin-left:200px;
margin-right:300px;
}
.c{
clear:both;
}
#footer{}
--></style>