Text indent is not working in ie7

前端 未结 14 1746
礼貌的吻别
礼貌的吻别 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:19

    The solution that I found to my text-indent woes in IE7, and something that I feel should be added to this thread is the following:

    Doesn't work:

    text-indent: -900009px;
    

    Does work:

    text-indent: -9999px;
    

    I didn't know there was a limit? I guess there is.

提交回复
热议问题