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&nbsp;</div>  <div style='float:left'>date&nbsp;</div>  <div style='float:left'>comments&nbsp;</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

Popular posts from this blog

javascript - Iterate over array and calculate average values of array-parts -

iphone - Using nested NSDictionary with Picker -

objective c - Newbie question -multiple parameters -