Nuisence With Internet Explorer Submit Button Horizontal Padding
Internet Explorer automatically adds padding to buttons in HTML forms.
This space stretches according to the length of the button’s text.
The solution is add overflow to its style …. i.e.
.button {
overflow:visible;
padding-left:10px !important;
padding-right:10px !important;
… any other style for this button…
}
OR
< input type="submit" value="Internet explorer respects my padding" style="overflow:visible; padding-left:10px !important; padding-right:10px !important;" >;
Subscribe to by Email








































