Gernot Back: Seite mit drei Spalten, dritte Spalte soll umbrechen.

Beitrag lesen

Hallo Gordon,

mir fällt zu deinem Problem nichts anderes als position:absolute in Verbindung mit overflow:auto ein

  
<!doctype html public "-//W3C//DTD HTML 4.0 //EN">  
<html>  
<head>  
<title></title>  
<meta name="author" content="Gernot Back">  
<meta name="generator" content="Ulli Meybohms HTML EDITOR">  
<style type="text/css">  
[code lang=css]  
html, body {  
  margin:0;  
  padding:0;  
  width:100%;  
  height:100%;  
  font-size:16px;  
  /* font-size nur zur Veranschaulicheung des Problems in Pixelmaß */  
}  
  
#linke {  
  margin:0;  
  padding:0;  
  width:150px;  
  height:100%;  
  overflow:auto;  
  background-color:#DDEEFF;  
  position:absolute;  
  top:0;  
}  
  
#mittlere {  
  padding:0 150px 0 0;  
  height:100%;  
  background-color:#FFEEDD;  
  position:absolute;  
  left:150px;  
}  
  
#rechte {  
  margin:0;  
  padding:0;  
  width:150px;  
  height:100%;  
  overflow:auto;  
  background-color:#EEFFDD;  
  position:absolute;  
  top:0;  
  right:0;  
}  

</style>
</head>
<body >
<div id="mittlere">Mitte Mitte Mitte Mitte MitteunregelmäßigMitte Mitte Mitte Mitte Mitte Mitte Mitte Mitte Mitte Mitte</div>
<div id="linke">Links Links Links Links Links Links LinksunregelmäßigLinks Links Links Links Links Links Links Links </div>
<div id="rechte">Rechts RechtsunregelmäßigRechts Rechts Rechts Rechts Rechts Rechts </div>
</body>
</html>
[/code]
Gruß Gernot