I would like to make the div the at the bottom to float at the bottom of the browser and visible all the time. pl help.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div style="height:1000px">Content</div>
<div style="width:100%;height:25px;background-color:#06C">Send feed back</div>
<a href="#">Go up ^</a>
</body>
</html>
Open in new window
http://cssreset.com/how-to-keep-footer-at-bottom-of-page-with-css/
Alternatively you can give your footer the following:
footer {
position:fixed;
left:0px;
bottom:0px;
height:30px;
width:100%;
background:#999;
}
/* IE 6 */
* html #footer {
position:absolute;
top:expression((0-(footer.
}
Good luck
MD