站内搜索:
首页 >> 前端 >> 内容
在ie6下面,overflow与text-indent:-9999px字体隐藏

时间:2012/12/13 16:48:29

在ie6下面 input value值 ,overflow与text-indent:-9999px 字体隐藏:

          1、  使用text-indent:-9999px;可是他有一个局限性 他只适用于块级元素block,在ie6下面 input value 不起作用,要在input 样式加上:line-height:0;
font-size:0;

例如:

.sign_but1{

width:110px;

height:42px;

text-indent: -99999px;

line-height:0;

font-size:0;

float:left;

background:url(../images/login/images/login_but.png) no-repeat;

border:none;

margin:15px 25px 0 0 !important;

cursor:pointer;

}


只有这样,在ie6下面,才会如愿的将input 中的value值隐藏


 

  • 上一篇:css3的一些新特性
  • 下一篇:Wordpress 博客如何实现自定义Gravatar头像
  • 返回顶部