具有粗体文本的链接的不同边框底部

时间:2017-05-11 20:44:07

标签: html css wordpress

在此页面(http://nate.fm/testing/)上,您可以看到文本链接的下边框被按下。谁能告诉我在CSS中哪些地方可以改变它?

3 个答案:

答案 0 :(得分:1)

您可以将<a>代码设置为display: inline-block;,然后缩小line-height

这样的事情可能是:

.post-content a {
    line-height: 15px;
    display: inline-block;
}

答案 1 :(得分:0)

.post-content a {
    /* border-bottom: 3px solid #eee; */
    text-decoration: underline;
}

答案 2 :(得分:0)

他们正在使用border-bottomline-heightline-height属性会导致&#34;推送&#34;在你提到的边界下面

.post-content a { border-bottom: 3px solid #eee; line-height: 160%; }