Hintergrundgrafik bei Listen
Kaira
- browser
Hallo,
ich habe das Problem, dass der IE die Hintergrundgrafiken in meiner Liste nicht anzeigen will.
Im Firefox ist alles schön und super.
Also hier mein HTML-Code:
<div id="navi">
<ul>
<li><a href="*">*</a></li>
</ul>
<ul>
<li><a href="*">*</a></li>
</ul>
<div id="stand">Stand: 01.März 09</div>
</div>
Und den CSS-Code dazu:
#navi{
margin-left:-40px;
margin-top:-590px;
text-decoration:none;
color:#000000;
list-style: none;
list-style-type: none;
width:231px;
line-height:45px;
text-decoration: none;
text-align: center;
}
#navi ul {
list-style-type:none;
}
#navi ul li{
background: url(bilder/button.png)100%;
background-repeat:no-repeat;
list-style:none;
font-weight:bold;
}
#navi ul ul li {
background: url(bilder/button2.png)100%;
background-repeat:no-repeat;
margin-left:-15px;
width:210px;
border:none;
text-align:center;
line-height:20px;
margin-top: 0.5em;
font-style:normal;
font-weight:normal;
}
Hi,
ich habe das Problem, dass der IE
Du solltest PositionIsEverything als Deine Startseite einrichten.
Cheatah
Hi,
background: url(bilder/button.png)100%;
Da fehlt whitespace. Analog beim zweiten background:
cu,
Andreas
Ja, dass habe ich jetzt auch bemerkt. ^^"
Aber vielen Dank.
Funktioniert jetzt alles. ^.^