前端之家收集整理的这篇文章主要介绍了
css – 锚标记上的边框底部填充,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在
标题中有一个锚
标记,我试图在锚
标记上放置一个边框
底部,这有效,但是
底部的填充太大而负填充不起作用,我该如何
解决这个问题呢?
住site
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; }
#featureText a {
line-height: 1em;
display: inline-block;
color: #414042;
text-decoration: none;
border-bottom: solid 2px #414042;
padding: 0;
}
原文链接:https://www.f2er.com/css/215186.html