Bar nederst i browseren, uden frames
Hejsa.Kan det lade sig gøre at lave en div der altid ligger nederst i browseren, uden frames? Jeg har lavet lidt html her...
default.css
------------------
body {
background-color: #cccc98;
margin: 0px 0px 0px 0px;
}
#top
{
background-color: #142632;
background-image: URL(includes/gfx/top/background.jpg);
width: 100%;
height: 133;
}
#contents
{
background-color: #cccc98;
width: 100%;
}
#bottom
{
background-color: #142632;
background-image: URL(includes/gfx/bottom/background.jpg);
width: 100%;
height: 134;
}
------------------
default.asp
------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>JARC</title>
<link rel="stylesheet" type="text/css" href="default.css">
</head>
<body>
<div id="top"></div>
<div id="contents">
Indhold her
</div>
<div id="bottom"></div>
</body>
</html>
------------------
Hvordan kan jeg få bottom til at ligge nederst i browseren altid, og alt anden indhold til at scrole ind under, også uden at gemme noget væk. Altså lidt så det kommer til at fungere som et frame setup.
