Why not just apply the styles to the .btn class instead of all the <a> tags:
Code:
.btn:link, .btn:visited {
display:block;
font-weight:bold;
color:#FFFFFF;
background-color:#98bf21;
width:120px;
text-align:center;
padding:4px;
text-decoration:none;
}
.btn:hover, .btn:active {
background-color:#7A991A;
}
.btn {
background: #ccc;
text-decoration: none;
border: 1px solid #aaa;
border-radius: 5px;
display: inline-block;
padding: 3px 6px
}
Code:
<a href="#">Test</a>
<a href="whatever.html" class="btn">This Button</a>
<a href="#">Test</a>
Bookmarks