I have a header which has a large image floated on one side, and a small paragraph of text on the other side. I want the paragraph to start at the bottom of the header div.
http://jsfiddle.net/danheberden/ymwPe/
Hi there!
I'm on the bottom!
css:
#container {
background: #EEE;
height:400px;
width:400px;
position:relative;
}
#gonnaBeOnTheBottom {
position:absolute;
bottom:0;
}
by setting position:relative on the parent container, you can absolute position elements inside of it :)