I\'m trying to remove all effects on a HTML Button element. The HTML:
After you have done whatever you like with the border etc., just put a span inside the button around the text like so:
Then the CSS becomes:
button {position:relative; width:40px; height:20px /* set whatever width and height */}
buttonspan {
height: 30px;
left: 0;
position: absolute;
top: 0;
width: 100%;
}