IE7 Ignores Bottom Margin

Soldato
Joined
30 Nov 2005
Posts
3,084
Location
London
IE7 is ignoring my bottom-margin on my float.

Works fine in Firefox.

Any ideas?

Code:
	.menu {
	float: left;
	margin-left: 10px;
	margin-bottom:10px;
	padding-bottom:5px;
	background-color:#670001;
	border: 1px solid #fff;
	min-height: 651px;
	height:auto !important;
	height: 651px; /* IE6 */
	width: 200px;
	clear: both;
Display:inline;
text-align:center;

}
 
You are using float and clear in the same definition? doesn't work afaIk

edit : And display inline? You are v confused there?
 
Back
Top Bottom