ヘッダー内にアンカー タグがあり、アンカー タグに border-bottom を配置しようとしていますが、これは機能しますが、下部のパディングが大きすぎて負のパディングが機能しません。これを回避するにはどうすればよいですか?
ライブサイト
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; }