css - position div to the bottom -
how can content div @ bottom instead of odd position?
http://jsfiddle.net/madprops/6ffxl/1/
<div> <div style='float:left'>name </div> <div style='float:left'>date </div> <div style='float:left'>comments </div> </div> <div id="contenido" style="font-size:20px;">content</div>
edit: removed float:top
it @ bottom me in example, (ff5), should make safe setting content clear floated divs, this:
<div id="contenido" style="font-size:20px;clear:both;">content</div>
also, float:top
on first div invalid, there no top
property of float.
Comments
Post a Comment