How to remove button text in IE7?
Negative text-indent isn’t working in IE7 to remove button text but you can apply text-transform: capitalize with text-indent property.
Following is code snippet.
HTML code:
<input class="button" type="button" value="Button Text" />
CSS:
input.button { text-indent: -9999px; text-transform: capitalize; }