roman_sol: div verschachtelung und dynamischer Höhe mit float

Beitrag lesen

Guten Tag,

mein Problem ist das meine div verschachtelung nicht mit den Inhalt mitgeht

Code:

  
<div id="content">  
			<div class="content_text_links"><!-- ###CONTENT### START-->Content Bereich<!-- ###CONTENT### END--></div>  
			<div class="content_text_rechts"><!-- ###CONTENT_RIGHT### START-->Rechter Content Bereich<!-- ###CONTENT_RIGHT### END--></div>		  
		</div>  

CSS:

  
#content {  
	width:971px;  
	background-color:#FFFFFF;  
	border:1px solid #0025ae;  
	margin-left:14px;  
}  
.content_text_links {  
	float:left;  
	width:400px;  
	padding-bottom:20px;  
	margin-left:32px;  
	margin-top:25px;  
}  
.content_text_rechts {  
	float:left;  
	width:400px;  
	margin-top:25px;  
	margin-right:105px;  
	margin-left:32px;  
	padding-bottom:20px;  
}  

Bitte um hilfe!