OhneName: position: absolute im IE 6

Beitrag lesen

Hallo donnerstag,

  
<html>  
 <head>  
  <style type="text/css">  
   #footer  
   {  
    height: 1em;  
    position: absolute;  
    bottom: 0;  
   }  
  </style>  
 </head>  
 <body>  
  <p id="footer">Text Text Text Text Text</p>  
 </body>  
</html>  

Dieser Code bewirkt bei mir sowohl im Internet Explorer 6 als auch im Opera 9.01 den gewünschten Effekt. Der Textabsatz hängt am unteren Rand des Viewports. Der Punkt ist halt, dass der IE zusätzlich zu position:absolute und bottom:0 noch eine Höhe braucht um die Position zu berechnen.

gruss,
OhneName