I\'m trying to remove all effects on a HTML Button element. The HTML:
It's a browser behaviour, a simple solution is to use a link tag instead of button (since you're calling a javascript function).
If you still want to use the , I've found that there are some characteristics on each browser (in a simple debug):
So to fix them, you have to manipulate the pseudo selectors for the button behaviour. And for IE, a good solution is to envolve your text on a element, and make it relative positioned. Like so:
Pen
This is a duplicate question