Hallo zusammen!
Ich habe folgendes Problem: Für eine Grafik möchte ich einen Rahmen und die Rahmenfarbe angeben. Im FF kein Problem, im IE wird die Rahmenfarbe automatisch schwarz gemacht. Ich weiß nicht warum und weshalb.
CSS:
body {
background-position: 0px 220px;
background-image: url(schmetterling_et_neg.jpg);
position: absolute;
font-family: Papyrus, Times New Roman, sans-serif;
color: #336699;
}
bzw.
#main {
margin: 209px 0 0 340px;
position: absolute;
height: 385px;
width:580px;
padding: 20px 10px;
background-color: #FFFFFF;
color: #336699;
}
Die erwünschte Farbe ist #336699 und im FF wird sie auch korrekt angezeigt! Ich habe es mit bordercolor im <p>-Tag und im <img>-Tag versucht, aber nichts hilft.
HTML:
<div id="main">
<p style="float:left; margin-right:10px; margin-bottom:10px;">
<img src="xxx.jpg" height="170" width="119" border="2" alt="Willkommen!">
</p>
...
</div>
Vielen Dank für Hilfe!