IE8 does NOT have the doubled-margin bug, which had more to do with the way it handled floats than margins.
The problem is that IE8 does not support display: inline-block that you have here:
Quote:
.point {
color: #A1A1A1;
display: inline-block;
padding-left: 2px;
text-align: left;
}
|
You will need conditional comments and a separate css file to target IE8 and change that to display:inline for that browser only.
It is not necessary, and not the best practice, to be adding extraneous code such as divs just to clear floats, there are better methods.
__________________
Web Goddess & Web Standards Evangelist :) - Tables Be Gone !!
Please login or register to view this content. Registration is FREE
Please login or register to view this content. Registration is FREE
|