I have a link and a button sitting next to each other on a page. The CSS code effecting them is identical, but the input is just a bit shorter in height than the input - any suggestions about how to make them the exact same height? JSFiddle
HTML:
<input type="submit" value="Input"> <a href="#">Link</a>
CSS:
input[type="submit"], a:link, a:visited {
background-color: #4eb4df;
border: none;
font-family: arial;
color: #ffffff;
border-radius: 4px;
padding: 5px 20px;
font-size: 1.2em;
text-shadow: 1px 1px #6d6d6d;
display: inline-block;
margin: 30px auto 10px;
text-transform: uppercase;
text-decoration: none;
}
input[type="submit"]:hover, input[type="submit"]:active, a:hover, a:active {
background-color: #3e94b9;
}