/ Published in: HTML
IE7 can be a pain when it comes to input submit buttons. In order to get the value to disappear using the text-indent: -999em; trick make sure to set text-transform: capitalize;
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
#input-button { text-indent: -999em; } .ie7 #input-button { text-transform: capitalize; }