hi,
ich hab eine html:
und eine css:
wie kann ich machen das sich die Position des Banner und nachfolgender Elemente auf "container" bezieht??
muss noch dazusagen, so wie es jetzt ist, zeigt es das banner nicht an...wiso??
ich hab eine html:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Test-Seite</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id=container>
<div id=baner></div>
</div>
</body>
</html>
Code:
html, body {
background-color: leightgrey;
margin:0;
padding:0;
height:100%;
}
div#container {
margin:0 auto;
width: 800px;
height: 100%;
color: black;
background: blue;
z-index: 1;
}
div#banner {
position: relative;
margin-left: 50px;
margin-top: 40px;
width: 700px;
height: 140;
background-color: black;
z-index: 2;
}
muss noch dazusagen, so wie es jetzt ist, zeigt es das banner nicht an...wiso??