This would work, however size would vary etc, because i have the size set to 800px, but you could change this.
Code:
<style type="text/css">
#bottom {
position: fixed;
bottom: 0px;
width: 810px;
height: 82px;
border: 1px dotted black;
}
#one, #two, #three, #four, #five{
float: left;
width: 160px;
border: 1px dotted black;
height: 65px;
}
</style>
<body>
<div id="bottom">
<div id="one">
<b><i>Div One</i></b>
</div>
<div id="two">
<b><i>Div Two</i></b>
</div>
<div id="three">
<b><i>Div Three</i></b>
</div>
<div id="four">
<b><i>Div Four</i></b>
</div>
<div id="five">
<b><i>Div Five</i></b>
</div>
It works, but there may be a better way of doing it. Kinda rushed it because im on the way to bed.
Jon