I built an icon font fitted to pixels but, when I try to use it, some times fit to pixels and other times does not.
In this example, three instances of the icon show diferent behavior. First instance fits, second an third does not. Why?
This example can be seen here: http://iac.e451.net/biblioteca-de-documentos.html
HTML
<div class="adjuntos">
<a href="#">
<span class="icon-doc-24"></span>
</a>
<a href="#">
<span class="icon-doc-24"></span>
</a>
<a href="#">
<span class="icon-doc-24"></span>
</a>
</div>
CSS
.docs .doc .adjuntos {
padding: 15px 50px;
background-color: #555555;
}
.docs .doc .adjuntos a {
display: inline-block;
color: white;
font-size: 24px;
line-height: 24px;
}
.docs .doc .adjuntos a:hover {
color: #b0adda;
}