Stefan: Netscape 7.1 zeigt folgendes Beispiel falsch an.....

Beitrag lesen

Hier noch ein BSP, das du siehst was ich mein...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
<style type="text/css">
html,body {
width:100%;
height:100%;
margin:0;
padding:0;
background-color:green;
}
.cont{
width:auto;
height:auto;
float:none;
background-color:white;
}
.l{
width:50%;
height:auto;
float:left;
background-color:orange;
}
.r{
width:50%;
height:auto;
float:left;
background-color:red;
}
.unten{
float:none;
width:100%;
height:50px;
background-color:yellow;
}
.clear {
 clear:both;
}
</style>
</head>
<body>
<div class="cont">
 <div class="l"><br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />Hier gestreckt
</div>
 <div class="r">adsfsd</div>
 <div class="clear"></div>
</div>
<div class="unten"></div>
</body>
</html>