I'm currently using CSS to give my input button the appearance of a link.
Here's how I've styled it:
input#linkLike {
background: none;
border: none;
cursor: pointer;
margin: 0;
padding: 0;
text-decoration: none;
font-weight: bold;
font-size: 12px;
display: inline;
vertical-align: baseline;
}
While this works perfectly in Chrome, I'm encountering some whitespace around the button in Firefox and even more space in Internet Explorer.
I'm curious about where this extra whitespace is coming from and what steps I can take to eliminate it.