Roland: 3 Divs in einem Div prozentuale Höhe?

Beitrag lesen

Im IE7 geht es.
Falls du den IE6 meinst: so geht das auch:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Höhe</title>
<style type="text/css">
body, html {
 margin: 0 auto;
 padding: 0;
 overflow: auto;
 width: 100%;
 height: 100%;
}
body {
 background-color: lime;
}

#frame {
 outline: none;
 overflow: auto;
 height: 100%;
}

#header {
 background-color:pink;
 height: 10%;
}

#content {
 background-color:yellow;
 height: 80%;
}

#footer {
 background-color:orange;
 height: 10%;
}
</style>
</head>
<body>
 <div id="frame">
  <div id="header">das ist der footer</div>
  <div id="content">das ist der content</div>
  <div id="footer">das ist der footer</div>
 </div>
</body>
</html>

hi

hast du es NICHT geloescht, auf IE6 func nicht ;)

Gruess,
Inita