Josef B.: fixed und absolute positionierung

Hallo,

ist es möglich, eine HTML/CSS Seite so zu programmieren, dass im Internet-Explorer der Navigations-DIV auf position:absolute und im Navigator auf fixed gestellt werden?

MFG
Josef

  1. hi

    ist es möglich, eine HTML/CSS Seite so zu programmieren, dass im Internet-Explorer der Navigations-DIV auf position:absolute und im Navigator auf fixed gestellt werden?

    ich hab' da gerade etwas für gedreht:

    <div class="bla">

    div.bla{position:absolute;}

    div[class="bla"]{position:fixed;}

    ....so geht's ;)
    Das ist der Attribute-Selector aus CSS2, den der MSIE ja bekanntlich nicht versteht. Mit 'ner ID geht das dann:

    <div id="bla">

    #bla{position:absolute;}

    div[id="bla"]{position:fixed !important;}

    Grüße aus Bleckede

    Kai

    1. Thank you very much!