隐藏提交按钮文本

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.
  1. .submitbutton {
  2. display:block;
  3. width:100px; height:25px;
  4. background-image:url(image.jpg); background-repeat:no-repeat;
  5. text-indent:-999px;
  6. font-size:0px; line-height:0;
  7. }

以上是关于隐藏提交按钮文本的主要内容,如果未能解决你的问题,请参考以下文章

隐藏提交按钮上的文本

从片段导航到另一个片段时隐藏键盘

带有固定按钮的片段

片段隐藏在Android中不起作用

由于隐藏按钮,Enter 无法在 IE 中提交表单

检查表单输入是不是为空,如果不是,则在按下提交按钮时显示隐藏的 div