I have a anchor tag inside a header and I am trying to put a border-bottom on the anchor tag, which works, however the padding at the bottom is too large and a negative padding wont work, how do I get around this?
live 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; }
1 Answer