Text indent is not working in ie7

前端 未结 14 1723
礼貌的吻别
礼貌的吻别 2021-01-31 09:43

I am working on a website and on the top navigation bar there is a search box, I applied the following css on the search submit button

#submit {
   background:          


        
14条回答
  •  隐瞒了意图╮
    2021-01-31 10:23

    If nothing else works exactly right, this does:

    color: transparent;
    text-indent: 0 !important; /* reset the old negative value */
    

    So normal browsers use the negative text-indent, ie7 gets special treatment using conditional comments

提交回复
热议问题