A bit of shreds, but in IE7 this will be mostly correct:
<input type="submit" Value="Really
long" style="width:50px; white-space:normal" />
Basically you should add a line break to your HTML. This "technique" is the job ... If you manually write your HTML, it will be an option, but if your code is generated (for example, ASP.Net), it may not work.
See this jsFiddle in IE7.
source
share