The div inside another div picture and code below. Because there will be text and images of the parent div. And red div will be the last element of the parent div.
<
Here is way to avoid absolute divs and tables if you know parent's height:
Home
CSS:
.parent { line-height:80px; border: 1px solid black; } .child { line-height:normal; display: inline-block; vertical-align:bottom; border: 1px solid red; }
JsFiddle:
Example