Tutorial Remove Button Text in IE7
HTML: .. or .. Go CSS: input.button { text-indent: -9000px; text-transform: capitalize; } Negative-indent alone unfortunately doesn't wo...
https://iskablogs.blogspot.com/2014/03/tutorial-remove-button-text-in-ie7.html
HTML:
.. or ..
CSS:
input.button { text-indent: -9000px; text-transform: capitalize; }
Negative-indent alone unfortunately doesn't work to remove text from a button element in IE7, but add text-transform: capitalize; and presto!
.. or ..
CSS:
input.button { text-indent: -9000px; text-transform: capitalize; }
Negative-indent alone unfortunately doesn't work to remove text from a button element in IE7, but add text-transform: capitalize; and presto!