采用以下示例:
span {
color: blue;
border: 1px solid blue;
font: 9px Arial;
font-weight: bold;
}

<span>LOREM IPSUM</span>
<span>LOREM IPSUM</span>
<span>LOREM IPSUM</span>
<span>LOREM IPSUM</span>
&#13;
浏览器会在边框和文本之间添加一些不一致的边距/填充:
火狐:
铬:
将margin
和/或padding
重置为0无效。反正在浏览器之间是否有更强一致?优选地,所有边都具有相同的边缘?
答案 0 :(得分:-1)
您可以尝试使用不同的前缀,例如:
.someDiv {
height: 19px; // probably your code
-webkit-height:19px; // for chrome and safari
-o-height:19px; // for opera
-moz-height:19px; // for firefox
}