CSS højde, hjælp!
Hej! Jeg har sprunget ud at skulle lave mit første design udentabeller ved hjælp af DIVs. Sitet ser sådan ud indtilvidere:
http://www.kbosoftware.frac.dk/
Problemet er at jeg vil have siden til at fylde hele browserens højde. Men jeg kan bare ikke få det til at virke :)
Style.css:
body{
margin:0 auto;
padding:0px;
color:#000000;
}
#content{
background-color:red;
width:500px;
height:400px;
margin:0 auto;
}
#container{
width:500px;
margin:0 auto;
}
#menu{
width:372px;
height:128px;
background:blue;
float:right;
}
#logo{
width:128px;
height:128px;
background:yellow;
float:left;
background-image:url(gfx/Logo/KBO_Software_green_gif.gif)
}
#footer{clear:both;display:none;}
Index.htm:
<!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=iso-8859-1" />
<title>Untitled Document</title>
<style type="text/css">
@import url('style.css');
</style>
</head>
<body>
<div id="content">
Brødtekst
</div>
<div id="container">
<div id="menu">
menu?!
</div>
<div id="logo">
</div>
</div>
<div id="footer"></div>
</body>
</html>
Håber i kan hæjlpe!
MVH Kasper