Hier mal das HTML:
[code lang=html]<body>
<html>The body is the world ;)
Gnarf, ja, da hast Du wohl recht :-)
Und das css:
[code lang=css]div {
position: absolute;
}.wrapper {
border: 1px solid black;
top:20px;
bottom:20px;
height: auto;Das heisst, die Höhe des Wrappers definiert sich nach der Höhe des Inhalts.
Aber wird nicht durch top und bottom die Höhe des Wrappers wieder vom Inhalt unabhängig und von der Ausdehnung des Parent Elements, also im (berichtigten) Fall von body abhängig?
.inner_2 {
position: relative;
border: 1px solid red;
width: auto;
height: 100%;Hat in dem Fall keine Wirkung, da das Parent Element eine height von auto hat.
Naja, es hat die Auswirkung das es genauso hoch ist wie das Parent Element, als das wrapper div. Und dadurch läuft es dann ja aus dem wrapper div raus.
Grüße,
Dirk