前端之家收集整理的这篇文章主要介绍了
css – Firefox中的负边距值问题,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在Firefox中有一个负余量的问题.我的负边距适用于Chrome,但不适用于Firefox.
.search-bar {
height: 108px;
position: relative;
margin-top: -10px;
}
解决方案简单:
.search-bar {
height: 98px;
position: relative;
top: -10px;
}
我用相同的值替换了顶部的margin-top,并且使用旧的margin-top值降低了高度,并且像魅力一样工作.
原文链接:https://www.f2er.com/css/215535.html