Hallo mensen,

Ik ben bezig met het maken van een website voor een vriend van mij. Nu is het zo dat de achtergrond (dat witte) in FF niet meeloopt met de tekst (dus even hoog is) en in IE wel. Wat doe ik fout in m'n css?

Link naar site

css:


#left {
	float:left;
	width:400px;
	margin:20px;
	text-align:left;
}
#right {
	margin:20px;
	margin-right:0px;
	height:450px;
	width:200px;
	float:left;
	text-align:left;	
}

#content {
	background:url(../images/content.png) no-repeat #fff;
	width:676px;
	height:auto;
	margin:0px auto;
}
Zet dit in #content
min-height : 100%;
height : auto;
height : 100%;
Werkt helaas niet.

Dit heb ik nu:

#content {
background:url(../images/content.png) no-repeat #fff;
width:676px;
min-height : 100%;
height : auto;
height : 100%;
margin:0px auto;
}
Probeer dit eens:

#content {
width: 676px;
min-height : 100%;
height : auto;
height : 100%;
padding: 0;
margin: 0 auto;
float: left;
background: #ffffff url('../images/content.png') repeat-y;
}
Mmm.. hij doet het wel als ik float:left; gebruik, maar dan komt de content ook links te staan ipv gecentreeerd.
doe je height auto eens met auto !important;

Reageren