Hab jetzt versucht es anders zu lösen und zwar hab ich einen container um alles herum gelegt, ihn auf heigth:100%; gestellt und ihm die gleiche bg-farbe wie dem inhaltscontainer gegeben. Jetzt hab ich ein neues Problem :-(
heigth:100%; funktioniert nicht, weder im Firefox noch im IE (ohne DTD gehts im FF, aber dann verändern sich die Buttons im IE)
Ich poste mal den Code
CSS:
body {
background-image:url(stylepics/green.bmp);
padding:0px;
margin:0px;
border:0px;
}
#block {
padding:0px;
margin:0px;
border:0px;
width:764px;
background-image:url(stylepics/yellow.bmp);
position:relative;
height:100%;
}
#menu {
padding:0px;
margin:0px;
border:0px;
width:764px;
height:70px;
background-image:url(stylepics/green.bmp);
}
a.butt {
width:119px;
height:35px;
padding-top:15px;
margin-bottom:10px;
margin-top:10px;
margin-right:10px;
background-image:url(stylepics/yellow.bmp);
display:block;
text-decoration:none;
font-family:arial;
color:#660000;
float:left;
}
a.buttr {
width:119px;
height:35px;
padding-top:15px;
margin-bottom:10px;
margin-top:10px;
background-image:url(stylepics/yellow.bmp);
display:block;
text-decoration:none;
font-family:arial;
color:#660000;
float:left;
}
a.butt:hover, a.butt:active, a.buttr:hover, a.buttr:active
{
background-image:url(stylepics/green.bmp);
}
img.logo {
height:100px;
position:fixed;
left:17px;
bottom:10px;
}
#haupt { padding:0px;
margin:0px;
border:0px;
width:764px;
text-align:left; }
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<img src="stylepics/logo.bmp" class="logo">
<center><div id="block">
<center><img src="stylepics/ueber.bmp" style="margin:0px; padding:0px; border:0px;"></center>
<div id="menu">
<a class="butt" href="#">menu1</a>
<a class="butt" href="#">menu1</a>
<a class="butt" href="#">menu1</a>
<a class="butt" href="#">menu1</a>
<a class="butt" href="#">menu1</a>
<a class="buttr" href="#">menu1</a>
</div>
<div id="haupt">
test<br>
test<br>
test<br>
test<br>
test<br>
</div>
</div></center>
</body>
</html>