Frangoo: Automatische Breite im IE7 bei absol. Elementen mit float. Kind.

Beitrag lesen

Hi Chris,

Abgesehen davon, dass ich unter einem Online-Beispiel etwas verstehe,

ja - ääh.. sorry :) Hatte das übersehen und alles auf den nötigsten Code generiert.

Hier also das komplette Document:

  
<!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=utf-8" />  
<title>infobox</title>  
<style type="text/css">  
	#infobox {  
		position:absolute;  
		height:90px;  
		overflow:hidden;  
		width:auto;  
	}  
	#infobox div.text {  
		height:58px;  
		width:auto;  
		background-color:#09F;  
		float:right;  
	}  
	#infobox div.layoutElementCloser {  
		float:right;  
		background-color:#F93;  
		width:6px;  
		height:58px;  
	}  
  
	#infobox div.arrow {  
		width:10px;  
		height:10px;  
		margin:0 auto;  
		  
	}	  
</style>  
</head>  
  
<body>  
  
<div id="infobox">  
	<div class="layoutElementCloser"> </div>  
	<div class="text">  
	Ich bin eine Infobox!  
    </div>  
  
    <div class="arrow"> </div>  
</div>  
  
  
  
  
</body>  
</html>  
  

Danke für deine Hilfe!!

Gruß
Frangoo