Steve: "position:fixed;" geht doch mit IE? - Problem nicht ganz gelöst

Beitrag lesen

Und ein weiteres mal hallo,

CSS-Datei:
/* Zuerst für moderne Browser mit position:fixed */
/* ... */
html,body { top:0; left:0; bottom:0; min-height:100%; margin:0; padding:0; }
body { position:absolute; }
#header { position:fixed; top:0; left:0; right:0; height:10%; }
#footer { position:fixed; bottom:0; left:0; right:0; height:10%; }
#scrolling { margin-top:10%; margin-bottom:10%; } /* Ich bin mir nicht sicher, auf was sich jetzt die 10% beziehen */

/* Nun für den IE */

* html scrolling { position:absolute; top:0; right:0; left:0; bottom:0; overflow:scroll; padding-top:10%; padding-bottom:10%; }
* html header,* html footer { position:absolute; }

Bis hierhin hast du mir schon sehr weitergeholfen! In firefox sieht bereits jetzt schon alles so aus wie ich mir das vorstelle, aber ich muss im IE noch ne Möglichkeit finden wie die Scroll-Seite immer die richtig größe hat bei jeder Auflösung.

Die 10% bei den du dir nicht sicher bist brauche ich für den Scrolling breich unten, denn mit padding funktioniert das leider nicht!

-enjoy Steve aka [PJ]neverk1lled