place element at the bottom of page and prevent from scrolling using css
Posted
by Jean
on Stack Overflow
See other posts from Stack Overflow
or by Jean
Published on 2010-04-25T11:19:13Z
Indexed on
2010/04/25
11:23 UTC
Read the original article
Hit count: 212
css
Hello,
I want to place this div at the bottom of the screen, and should stay at the bottom even though there is a scroll, it stays at the bottom, but moves when I scroll.
<div style="color:#FFF; position:absolute; bottom:0px;">
<?php
$time_taken=round(getmicrotime()-$time_start,4);
echo"Generated in ".$time_taken." seconds";
?>
</div>
Thanks Jean
© Stack Overflow or respective owner