Computer Tips - css: position something at the bottom of a page

Date: 2011sep26 Language: html Platform: web Q. css: position something at the bottom of a page A. Use CSS position:absolute and bottom:0 like this:
<div style="position: absolute; bottom: 0; left: 10%;">I will be at the bottom</div>