Hallo,
kann mir jemand erläutern, warum folgende 2 Fälle obwohl sie absolut identisch sind ein vollkommen anderes Ergebnis liefern? Ich benutze FF3.
<a></a> ist zuvor nicht per css definiert..
Fall 1
Inhalt der externen css
Inhalt der Seite
Ergebnis: Überschrift und Link werden wie formatiert ausgegeben.
Fall 2
Inhalt der externen css
Inhalt der Seite
Ergebnis: Überschrift wird wie formatiert ausgegeben, der Link wird nach Browserstandard ausgegeben.
kann mir jemand erläutern, warum folgende 2 Fälle obwohl sie absolut identisch sind ein vollkommen anderes Ergebnis liefern? Ich benutze FF3.
<a></a> ist zuvor nicht per css definiert..
Fall 1
Inhalt der externen css
HTML:
h1 {
font:bold 16px/14px Arial, sans-serif;
padding:20px 0 10px 0;
}
HTML:
<h1>Attribute von <a href="#" style="text-transform:uppercase; font:bold 12px Arial, sans-serif; color:#FF6600; display:inline; text-decoration:none;"><?php echo $_SESSION["latest_active_char"]; ?></a></h1>
Fall 2
Inhalt der externen css
HTML:
h1 {
font:bold 16px/14px Arial, sans-serif;
padding:20px 0 10px 0;
}
h1 a {
text-transform:uppercase;
font:bold 12px Arial, sans-serif;
color:#FF6600;
display:inline;
text-decoration:none;
}
HTML:
<h1>Attribute von <a href="#"><?php echo $_SESSION["latest_active_char"]; ?></a></h1>