Set position of DIV to absolute, to bottom 50px, to left 100px
<html> <head> <title></title> <style type="text/css"> .absolute { position: absolute; bottom: 50px; left: 100px; } </style> </head> <body> <div class="absolute"> <p> in a div</p> </div> </body> </html>