IE6 doubles the margin value of a floated element’s margin-right or margin-left. To fix this:
-
put
display: inline;
in the floated element, or - use
margin: 0 2 0 2;
_margin: 0 1 0 1;
and the _margin will be read by IE6.
and she wants to . slow . down
IE6 doubles the margin value of a floated element’s margin-right or margin-left. To fix this:
display: inline;margin: 0 2 0 2;
_margin: 0 1 0 1;