Closed Miaonster closed 10 years ago
If an element has both span* and offset* classes, and it also fits :first-child, the offset* class won't work.
span*
offset*
:first-child
What's more, elements, not :first-child, with offset* and span* have double margin-left too.
As mentioned in #14, this problem blames to the "ie6-double-margin" problem. To solve this problem, just add display: inline; to the element in IE6.
display: inline;
If an element has both
span*
andoffset*
classes, and it also fits:first-child
, the offset* class won't work.What's more, elements, not
:first-child
, withoffset*
andspan*
have double margin-left too.As mentioned in #14, this problem blames to the "ie6-double-margin" problem. To solve this problem, just add
display: inline;
to the element in IE6.