线高度问题影响div高度

时间:2015-10-06 23:12:32

标签: css

关于这个page我遇到的问题是线条高度会稍微影响div的高度,所以当你滚动时会有一些像素高的差距,基本上填充了主页英雄的底部。见下图 see the white line below "shopping" cutting off the top of the black text?

我已经隔离了处理行高的问题,如果我在整个页面上将其设置为0它修复了问题,但随后文本变得不可读,因为它被刷了。我如何摆脱线高问题,但保留我的文本(1.67)?

这是CSS

#content {
    line-height: 0 !important;
}

* {
    line-height: 1.67;
}

body {
    line-height: 1.67;
}

1 个答案:

答案 0 :(得分:1)

在#home_wrapper上将margin-bottom设置为-10px似乎解决了这个问题。