Thomas_Jung
Erfahrenes Mitglied
Hallo
Warum wird der Text Das ist das Ende am Ende der Schleife nicht mit angezeigt?
#main hat doch bottom:25px
Gruß Thomas
Warum wird der Text Das ist das Ende am Ende der Schleife nicht mit angezeigt?
#main hat doch bottom:25px
Gruß Thomas
HTML:
<style>
* { margin: 0; padding: 0; }
html, body { height: 100%; }
#header { position:fixed; left:0; top:0; width:100%; height:30px; z-index:5; background-color: #ccc; overflow;hidden; }
#main { position:relative; left:10px; top:35px; bottom:25px; width:90%; height:100%; z-index:1; overflow;auto; }
#footer { position:fixed; left:0; bottom:0; width:100%; height:20px; z-index:5; background-color: #ccc; overflow;hidden; }
</style>
HTML:
<div id="main"><!-- MAIN START -->
<?php
for ($i=0;$i<2000;$i++) {
?>
<div style="float:left; width:100%;"><img src="images/notfound-error.png" width="256px" height="256px" alt="Bild" title="Bild" border=0><br><br><br></div>
<div style="float:left; width:100%;">HALLO<br><br><br></div>
<?php
}
?>
<div style="float:left; width:100%;">Das ist das Ende</div>
</div><!-- MAIN ENDE -->
<div id="header"><!-- HEADER START -->
<div style="float:left; width:100%;">HEADER</div>
</div><!-- HEADER ENDE -->
<div id="footer"><!-- FOOTER START -->
<div style="float:left; width:100%;">FOOTER</div>
</div><!-- FOOTER ENDE -->