Hallo,
ich habe mit css Layer zentriert, die Darstellung klappt auch wunderbar bei IE 6 und NS 6, allerdings nicht bei NS 4.7. Was Kann ich tun, dass auch dort die Darstellung korrekt ist?
Der code ist wie folgt:
im head:
<style type="text/css" media="screen">
body {margin:0px; padding:0px;}
#layer-zentriert
{
position:absolute;
left:50%;
width:500px;
margin-top:70px;
margin-left:-350px;
}
</style>
in body:
<div id="layer-zentriert">
...
</div>
Danke im voraus...
wuscheck