J
jack86
Guest
Hey, ich hab ein Problem mit CSS...
Ich habe ein background-image deffiniert und in Mozilla ist das auch kein Ding... aber im IE wird das Bild einfach nicht gezeigt... was ist falsch an meinem Code???
Das Problem ist der background bei #left... hier mal das ganze css
Ich habe ein background-image deffiniert und in Mozilla ist das auch kein Ding... aber im IE wird das Bild einfach nicht gezeigt... was ist falsch an meinem Code???
Das Problem ist der background bei #left... hier mal das ganze css
Code:
body{
position:relative;
text-align:center;
padding:: 0px;
margin: 0px;
background:#C9D7DC;
}
#main{
position:relative;
margin-top: 50px;
margin-right: auto;
margin-bottom: 0px;
margin-left: auto;
width:900px;
height:500px;
text-align:left;
background:white;
}
#left{
position:absolute;
margin:0px;
padding:0px;
width:200px;
height:500px;
background:blue url(../images/left_back.jpg);
}
#top{
position:absolute;
left:200px;
top:25px;
width:700px;
height:20px;
background:#0033FF;
}
.menupunkt{
float:left;
padding:0px;
margin-left:5px;
margin-right:5px;
position:relative;
width:100px;
height:20px;
text-align:center;
background:#00FF00;
}
#content{
padding:0px;
margin:0px;
width:700px;
height:455px;
left:200px;
top:45px;
position:absolute;
}