JSFIDDLE I am trying to write styling for a button in CSS. The css code:
.btn{
border: solid 1px rgba(210, 210, 210, 0.69);
outline: none;
color: black;
background-color: #E8E8E8;
font-family: Verdana, sans-serif;
cursor: pointer;
margin: 2px;
display: inline-block;
text-indent: 0;
font-style: normal;
font-size: 12px;
padding: 3px 7px;
}
This works great for input tags and a tags
<input type='submit' class='btn'>
<button class='btn'>Submit</button>
The issue is with the a tag
<a href='#' class='btn'>Submit</a>
In chrome and safari, it works great, but in firefox, the sizing is off, how can I fix this?
