Hi,
http://vfb-stuttgart.piranho.com
Das rechte Menü (.menre) bleibt immer 10 px vom Seitenrand entfernt.
1.)Jetzt soll der Mittelteil (.text) immer genau den Platz zwischen dem linken Menü und dem rechten Menü ausfüllen (mit 10 px Abstand zu den Menüs). Wie mache ich das?
2.) Das obere Menü soll auch immer bis 10 px zum rechten Rand gehen. Wie mach ich das?
Thomas
<html><head>
<style type="text/css">
.menob
{
font-size:12px;font-family:Verdana;
position:absolute;width:748px;height:100px;
background-color:#efefef;
border:1px solid #aaaaaa;
left:10;top:10px;
-moz-border-radius:10px;
}
.menli
{
font-size:12px;font-family:Verdana;
position:absolute;width:100px;height:290px;
background-color:#efefef;
border:1px solid #aaaaaa;
left:10px;top:120px;
-moz-border-radius:10px;
}
.menre
{
font-size:12px;font-family:Verdana;
position:absolute;width:100px;height:290px;
background-color:#efefef;
border:1px solid #aaaaaa;
left: 100%;
margin-left: -110px;
top:120px;
-moz-border-radius:10px;
}
.text
{
font-size:12px;font-family:Verdana;
position:absolute;height:290px;
background-color:#efefef;
border:1px solid #aaaaaa;
left: 120px;
top:120px;
-moz-border-radius:10px;
}
</style>
<title>Rahmen mit abgerundeten Ecken</title>
</head>
<body>
test
<div class="menli">linkes Menü</div>
<div class="menre">rechtes Menü</div>
<div class="menob">Header</div>
<div class="text">Inhalt</div>
</body></html>