wuscheck: Problem mit zentrierten Layern

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

  1. hi

    <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>

    media="screen" (also überhaupt mediatypes) und #layer-zentriert (also das -) mag Netscape 4 nicht.

    Grüße aus Bleckede

    Kai

    1. hi

      <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>

      media="screen" (also überhaupt mediatypes) und #layer-zentriert (also das -) mag Netscape 4 nicht.

      Gibt es eine andere Möglichkeit???

      Grüße aus Bleckede

      Kai

      1. hi,

        media="screen" (also überhaupt mediatypes) und #layer-zentriert (also das -) mag Netscape 4 nicht.
        Gibt es eine andere Möglichkeit???

        Ja. Weglassen. media=screen brauchst du nicht, und layer-zentriert kannst du auch layerzentriert nennen.

        Grüße aus Berlin

        Christoph S.