Waterfront_xD
Neues Mitglied
Moin ich verzweifel... Schaut euch das Bild an: Man sieht das der Container "Linkerrand" nicht gleich mit "Datum" aufhört... Also er lappt einfach rüber ... Die width sind aber bei beiden Containern 20% ...
Hier mein kompletter body:
Und hier meine CSS datei:
LG
Water
Hier mein kompletter body:
HTML:
<body>
<div id="website">
<div id="home">Home</div>
<div id="banner">Banner</div>
<div id="datum">Datum</div>
<div id="menu">Menü</div>
<div id="linkerrand">Linkerrand</div>
<div id="content">Content</div>
<div id="telefon">Telefon</div>
</div>
</body>
Und hier meine CSS datei:
Code:
html, body {
font-family: Verdana, Arial, sans-serif;
color: white;
background-image: url("../images/background.png");
}
#website{
height:100%;
width:100%;
margin:auto;
}
#home{
background: green;
height:200px;
width:20%;
position:absolute;
top:10px;
left:10px;
}
#banner{
background: gray;
height:200px;
width:80%;
position:absolute;
top:10px;
right:10px;
}
#datum{
background: blue;
height:25px;
width:20%;
position:absolute;
top:210px;
left:10px;
}
#menu{
background: orange;
height:25px;
width:80%;
position:absolute;
top:210px;
right:10px;
}
#linkerrand{
background:orange;
height:600px;
width:20%;
position:absolute;
top:235px;
left:10px;
}
#content{
-moz-border-radius:15px 15px 15px 15px; /* Firefox */
-webkit-border-radius:15px 15px 15px 15px; /* Chrome, Safari */
-khtml-border-radius:15px 15px 15px 15px; /* Konqueror */
border-radius:15px 15px 15px 15px; /* CSS3 */
behavior:url(border-radius.htc); /* Internet Explorer */
border: solid black 2px;
height:500px;
width:55%;
position:absolute;
top:255px;
right:300px;
}
#telefon{
border: solid white 2px;
-moz-border-radius:15px 15px 15px 15px; /* Firefox */
-webkit-border-radius:15px 15px 15px 15px; /* Chrome, Safari */
-khtml-border-radius:15px 15px 15px 15px; /* Konqueror */
border-radius:15px 15px 15px 15px; /* CSS3 */
behavior:url(border-radius.htc); /* Internet Explorer */
width:250px;
height:200px;
position:fixed;
top:250px;
right:8px;
}
LG
Water