hier mal der quelltext, nur ein problem, im FF sollte die breite von 100% durchgängig grau sein ist aber nur der streifen grau wo das menü ist...danke schon mal für einen tip.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>title</title>
<style>
#menubar
{
width: 100%;
border: 1px solid #000080;
background-color: #ECECEC;
}
#menu
{
width: 289px;
margin: auto;
}
#menu ul {
margin:0;
padding:0;
list-style-type:none;
}
#menu li {
list-style-type:none;
float:left;
/*width:7em;*/
margin:0;
padding:0 10px 0 10px;
background-color: #ECECEC;
}
#menu li a {
font-size: 11px;
font-family: tahoma;
display:block;
color:#666666;
background-image: url(../images/bullet.gif);
background-repeat: no-repeat;
background-position: 0 4px;
font-weight:bold;
text-align: center;
text-decoration:none;
padding: 0 0 0 9px;
}
</style>
</head>
<body>
<div id="menubar">
<div id="menu">
<ul>
<li><a href="#">Irgendwas</a></li>
<li><a href="#">Über uns</a></li>
<li><a href="#">AGB</a></li>
<li><a href="#">FAQ</a></li>
</ul>
</div>
</div>
</body>
</html>