隐藏提交按钮文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了隐藏提交按钮文本相关的知识,希望对你有一定的参考价值。
Sometimes you can't use an image button, you have to use a submit button, but you still want to hide the text and show an image instead.The width and height can be changed, of course. The point is that they are specified.
Display:block is needed for IE, according to the original article. Not sure if the font-size and line-height are strictly needed; I didn't test extensively.
.submitbutton { display:block; width:100px; height:25px; background-image:url(image.jpg); background-repeat:no-repeat; text-indent:-999px; font-size:0px; line-height:0; }
以上是关于隐藏提交按钮文本的主要内容,如果未能解决你的问题,请参考以下文章