Last Updated: February 25, 2016
·
447
· janvl

Fixing the width of a submit button in IE7

For some reason IE7 stretches the width of the submit button whenever the value exceeds 10 characters.

The easiest way to solve this is by adding this to your css:

input[type="submit"]{
     overflow: visible !important;
}

strange, but it works.