I'd want add a div to the bottom of another div. I have tested this code and it works fine.
<div style="position: relative; width: 200px; height: 150px;">
<div style="position: absolute; bottom: 0; width: 100%; height: 50px; border: 1px solid red;">
</div>
</div>
But when I use this as a template for sending an email , it doesn’t work. When I check css code in firebug only this styles doesn’t set (just : position:absolute;bottom:0; and position:relative;) but another css style add. I use easendmail for sending mail. What is problem?