Servus Folks,
vor kurzem habe ich ja schon ein enig CSS Probleme gehabt.
Soweit so gut. Was Opera 6 / 7 IE 5.5 und 6 sowie Netscape 7 betrifft, habe ich meine Darstellungswünsche gebacken bekommen.
Folgender HTML Code wird jedoch im Safari nicht richtig interpretiert.
Der Text in H1 und H2 wird nicht linksbündig sondern zentriert dargestellt.
Vieleicht fällt einem von euch ein workaround dazu ein.
Gruss Matze
<html xmlns="http://www.w3.org/1999/html">
<head>
<title>Partypage</title>
<base target="_self">
<style type="text/css">
<!--
body { text-decoration:none; color:#12295A; margin-left: 15px; margin-top: 10px; background-image: url(images/bg_main.jpg); }
table { border: 2px; border-color:#E5EAF6; border-collapse: collapse}
h1 {background-color: #E5EAF6; width: 550px; text-align: left; }
h2 {background-color: #12295A; width: 550px; color: #E5EAF6; text-align: left; }
a:link { text-decoration:underlined; font-weight:bold; color:#12295A; }
a:visited { text-decoration:underlined; font-weight:bold; color:#12295A; }
a:hover { text-decoration:underlined; font-weight:bold; background-color:#E5EAF6; }
a:active { text-decoration:underlined; font-weight:bold; background-color:#7992C9; }
-->
</style>
</head>
<body>
<h1>Aktuelle Termine und Veranstaltungen. </h1>
<h2>31.12.03 ~ 02.01.04 <br>Silvesterparty in der Bude.</h2>
<p> Demnächst mehr.</p>
</body>
</html>