7

我在标题中有一个锚标签,我试图在锚标签上放置一个边框底部,这可以工作,但是底部的填充太大并且负填充不起作用,我该如何解决这个问题?

现场直播

html

<div id="featureText">
        <h1>Recent Works / <a href="#">All</a></h1>
    </div>

css

#featureText a {
    color: #414042;
    text-decoration: none;
    border-bottom: solid 2px #414042;
    padding-bottom: -2px; }
4

2 回答 2

11
#featureText a {
    line-height: 1em;
    display: inline-block;
    color: #414042;
    text-decoration: none;
    border-bottom: solid 2px #414042;
    padding: 0;
}
于 2012-11-24T23:56:38.667 回答
5

我建议:

#featureText h1 a {
    /* all your other CSS... */
    display: inline-block;
    line-height: 1em;
}
于 2012-11-24T23:57:25.170 回答