Text indent is not working in ie7

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

    Don't use text-indent. Try this one instead:

    display: block;
    height: 0;
    padding-top: 20px; //The height of your button
    overflow: hidden;
    background: url(image.png) no-repeat; // Image replacement
    

    Works in all browsers including IE6.

提交回复
热议问题