L00NIX: Absolut bzw Fixed posit. DIV für Navigation als Frameersatz

Beitrag lesen

Habe es hinbekommen:

+--------------------------+
|logo (fest)               |
+------+-------------------+
|nav   |                   |
|(fest)|                   |
|      |    Hauptteil      |
|      |                   |
|      |                   |
|      |                   |
+------+-------------------+

Man muss beim Navigations-DIV einfach auch den Abstand zum Boden angeben:

#navigation
{
    position: absolute;

top: 5em;
    bottom: 0em;
}
#navigation[id]
{
    position: fixed;
}

YEAH!