Anpassungsproblem

Status
Nicht offen für weitere Antworten.
Also im Anhang ist die Homepage, dein Code Beispiel hab ich dort reingebaut!

So was du jetzt gepostet hast war nämlich auch ein Problem!
Der Linke teil bzw der Recte sind zwar flexibel reichen jedoch nicht an die Hompageran.

Ich benutzt den Firefox 1.07 ;) und den IE 6

gruß
 

Anhänge

  • hp+code.jpg
    hp+code.jpg
    23 KB · Aufrufe: 38
Hier mein alternativer Lösungsvorschlag:
  • Browsercheck: FF 1.5, IE 6.0, MOZ 1.6, NN 7.0, OP 8.50
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title></title>
 
<style type="text/css">
<!--
html, body
{
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
 
div.leftCol
{
float: left;
width: 49.9%;
height: 100%;
background: #dfdfdf;
}
 
div.rightCol
{
float: right;
width: 49.9%;
height: 100%;
background: #dfdfdf;
}
 
div.clear
{
clear: left;
height: 0;
line-height: 0;
font-size: 0;
margin: 0;
padding: 0;
}
 
div.content
{
position: absolute;
left: 50%;
width: 459px;
margin-left: -229.5px; /* negative Hälfte von width:459px */
top: 0;
bottom: 0;
z-index: 2;
background: #f5f5f5;
border: 1px solid #000;
padding: 0;
overflow: auto;
}
 
* html div.content /* Für IE */
{
height: expression((document.body.clientHeight) + "px");
}
-->
</style>
 
</head>
<body>
 
<div class="leftCol">&nbsp;</div>
 
<div class="rightCol">&nbsp;</div>
 
<div class="clear">&nbsp;</div>
 
<div class="content">
	 <p>content</p>
	 <!--<p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>
	 <p>content</p>-->
</div>
 
</body>
</html>
 
Status
Nicht offen für weitere Antworten.
Zurück