Thomas J.S.: text-align:center bei IE5

Beitrag lesen

Hallo!

<style type="text/css">
<!--
h2{font-size:30pt;text-align:center;}
#text1{position:absolute;z-index:2;top:10;};
#text2{position:absolute;top:12;z-index:1;};

//-->
</style>

1)Zu viele Semicolons!
2) wo ist hier text-align?
#text1{position:absolute;z-index:2;top:10;}; <--weg!
#text2{position:absolute;top:12;z-index:1;}; <--weg!

Ich habe deine Setie etwas umgeschrieben:
<html>
<head>
<style type="text/css">
<!--
h2 {
font-size:30pt;
}
#text1 {
top:12px;
z-index:1;
}
#text2{
top:10px;
z-index:2;
}
.kopf {
position:absolute;
width:100%;
text-align:center;
}

//-->
</style>
</head>
<body background="sky.gif">
<div id="text1" class="kopf"><h2><font color="6699FF">REISEBÜRO SCHÜGNER</font></h2></div>
<div id="text2" class="kopf"><h2><font color="000099">REISEBÜRO SCHÜGNER</font></h2></div>
<div style="top:50px;" class="kopf"><hr width=70%></div>
<div style="top:60px; font-weight:bold" class="kopf">BARGTEHEIDE     BAD OLDESLOE     BAD SEGEBERG     REINFELD</div>
</body>
</body>
</html>

Grüße
Thomas