Einzelnen Beitrag anzeigen

Benutzerbild von Meflin
Meflin

Registriert seit: 21. Aug 2003
4.856 Beiträge
 
#3

Re: [HTML] übergroßer inhalt beim IE

  Alt 25. Aug 2006, 00:40
Das Problem hatte ich auch mal, allerdings bei fixen Breiten. Mit position:absolute kannst du es umgehen!
Code:
#left {
   position:absolute;
   top:10px;
   left:10px;
   width:180px;
}

#main {
   position:absolute;
   top:10px;
   left:200px;
   width:790px;
}
  Mit Zitat antworten Zitat