Detlef G.: Frage zu div-Positionierung am Browserrand.

Beitrag lesen

Hallo aufgreifen

... - d.h. die Tabelle wird immer maximal 800 oder so breit sein, egal, welche Auflösung ein Benutzer hat.

Sollen dort tabellarische Daten rein?

Geht das irgendwie?

Meinst du so?
XHTML:

<body>  
  <div id="testfixed">  
    Test-Inhalt  
  </div>  
</body>  

CSS:

html, body {  
  margin:0;  
  padding:0;  
}  
html {  
  background-image: url(http://gamegod.pytalhost.com/aufgreifen/images/bg.gif);  
  height:100%;  
}  
body {  
  font-family: Tahoma, Helvetica, Verdana, Arial, sans-serif;  
  font-size: 12px;  
  color: #000;  
  background:url(http://gamegod.pytalhost.com/aufgreifen/images/foto1.gif) no-repeat 849px 332px;  
  min-height:100%;  
  border-top: 1px solid transparent;  /* vermeidet collapsing-margins */  
  margin:-1px 0 0 0;  
}  
* html body {  
  height:100%;   /* min-height für IE bis 6 */  
}  
#testfixed {  
  margin:50px 0 0 115px;  
  width: 700px;  
  min-height:500px;  
  background-color:#fff;  
}  
* html #testfixed {  
  height:500px;   /* min-height für IE bis 6 */  
}

Auf Wiederlesen
Detlef

--
- Wissen ist gut
- Können ist besser
- aber das Beste und Interessanteste ist der Weg dahin!