problemer med kasse i buneden af css design (kun i NS)
Jeg har lavet nedenstående design, og det virker fint i IE, men i NS kan jeg ikke få den nederste kasse (copyright) tilat være i bunden på tvers af alle de andre kasser.¨<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="da" lang="da">
<head>
<title><!-- Title --></title>c
<style type="text/css">
/* Layout */
html, body {
height: 100%;
padding: 0px;
margin: 0px;
background-color: #eeeeee;
}
#container{
position: absolute;
left: 50%;
width: 750px;
margin-left: -375px;
background-color: #ffffff;
border-left: 2px solid #CC0000;
border-right: 2px solid #CC0000;
}
#menu{
height: 30px;
width: 750px;
margin-top: -4px;
border-top: 5px solid #666666;
background-repeat: repeat-x;
background-image: url(menubg.gif)
}
#rightframe {
float: right;
width: 200px;
padding-left: 10px;
margin-right: -10px;
background-repeat: repeat-y;
background-image: url(umenubg2.gif)
}
#main {
float: left;
padding: 10px;
width: 520px;
word-spacing: 0.2em;
font-size: 14px;
}
#copyright {
position: relative;
height: 15px;
width: 750px;
border-top: 2px solid #CC0000;
border-bottom: 1px solid CC0000;
}
</style>
</head>
<body>
<!-- container -->
<div id="container">
<!-- Topbillede -->
<div id="top_picture">
<img src="top.jpg" width="750" height="150" />
</div>
<!-- Menu -->
<div id="menu">
<!-- Menu_top -->
</div>
<!-- righeframe -->
<div id="rightframe">
<b>Nyheder</b><br><br>
</div>
<!-- Main -->
<div id="main">
<!-- Content -->
</div>
<!-- Copyright -->
<div id=copyright>
Copyright 2005
</div>
</div>
</body>
</html>
