Hallo,
ich habe mal wieder ein Problem ich möchte zwecks Menü Divs untereinander positionieren. Klappt aber nicht, trotz float etc verschieben sich die Divs nebeneinander.
CSS:
Bin für jeden Tipp dankbar!
ich habe mal wieder ein Problem ich möchte zwecks Menü Divs untereinander positionieren. Klappt aber nicht, trotz float etc verschieben sich die Divs nebeneinander.
HTML:
<link rel="stylesheet" type="text/css" href="css/styleindex.css" title="Standard-Layout"/>
<style type="text/css">
</style>
</head>
<body>
<div id="content">
<div id="linkslogo"></div>
<div id="rechts"></div>
<div id="linksmenue1"><div id="font">Start</div></div>
<div id="linksmenue2"><div id="font">Kontakt1</div></div>
<div id="linksmenue3"><div id="font">Impressum</div></div>
<div id="linksmenue4"><div id="font">Hallo</div></div>
<div id="linksmenue5"><div id="font">Start</div></div>
</div>
</body>
</html>
CSS:
Code:
@charset "UTF-8";
/* CSS Document */
#content {
width:950px;
height:750px;
margin:1em auto;
background-image:url(../bilder/backgroundcontent.png);
background-repeat:repeat-x;
}
#linkslogo {
width:300px;
height:200px;
float:left;
margin-top:25px;
background-color:#06C;
}
#rechts {
width:600px;
height:200px;
float:right;
margin-top: 25px;
}
#linksmenue1{
margin-top:25px;
width:250px;
height:40px;
float:left;
}
#linksmenue2{
margin-top:20px;
width:250px;
height:40px;
background-color:#06C;
float:left;
}
#linksmenue3{
margin-top:20px;
width:250px;
height:40px;
float:left;
background-color:#06C;
}
#linksmenue4{
margin-top:20px;
width:250px;
height:40px;
float:left;
background-color:#06C;
}
#linksmenue5{
margin-top:20px;
width:250px;
height:40px;
float:left;
background-color:#06C;
}
#font{
width:150px;
height:20px;
float:left;
margin-left:20px;
margin-top: 10px;
}
Bin für jeden Tipp dankbar!