提交按钮上的文本缩进

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了提交按钮上的文本缩进相关的知识,希望对你有一定的参考价值。

IE not interpreting text-indent on submit buttons ?

How it works
Let’s see how it works.
font-size:0 is used to reduce the font size and works well in IE7. But even after adding this line, you would notice a black line(which is basically the text) on the center of the button in IE6.
display:block Negative text-indent works in IE only if this is added.
line-height: 0 Another fix for IE6.
  1. input.button{
  2. width:114px;
  3. height:37px;
  4. border: none;
  5. background: transparent url(images/submit_btn.gif) no-repeat center;
  6. overflow: hidden;
  7. text-indent: -999px;
  8. font-size: 0;
  9. display:block;
  10. line-height: 0;
  11. }

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

提交后更改提交按钮上的文本

在VS上的Git提交代码的流程步骤

css 更改表单的提交按钮上的文本颜色。

隐藏提交按钮上的文本

文本缩进在 ie7 中不起作用

如何在点击Vaadin画布上的提交按钮时填写文本?