css – Firefox和Chrome填充之间的区别

前端之家收集整理的这篇文章主要介绍了css – Firefox和Chrome填充之间的区别前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
firefox和chrome如何在CSS中渲染填充有区别。
在chrome中显示正确的内容是额外填充在Firefox中。有办法解决吗?
.button {
    font-family: helvetica,arial;
    font-size: 64px;
    width: 70px;
    height: 45px;
    font-weight: bold;
    padding: 0px;
    padding-top: 25px;
    background-color: #000;
    color: #fff;
    text-align: center;
    float: right;
    margin: 7px 10px 0 0;
}

解决方法

如果你的按钮是一个按钮,这可能是一个mozilla内部焦点事情…尝试这个?
.button::-moz-focus-inner { border: 0; padding: 0; margin:0; }
原文链接:https://www.f2er.com/css/219494.html

猜你在找的CSS相关文章