.item-list {
letter-spacing: -0.3em;
}
.item-list a {
letter-spacing: 0;
display: inline-block;
}
<div class="item-list">
<a href="#">a</a>
<a href="#">a</a>
<a href="#">a</a>
<a href="#">a</a>
</div>
only in win ie6,the gap between a
is still exit ,the style letter-spacing:-0.3em
will make effective when delete the style of a { letter-spacing:0 }
why? can i figure out this problem?