Any way to remove IEs black border around submit button in active forms?

后端 未结 18 1879
南笙
南笙 2020-11-28 22:57

I am implementing a design that uses custom styled submit-buttons. They are quite simply light grey buttons with a slightly darker outer border:

input.button         


        
18条回答
  •  北海茫月
    2020-11-28 23:41

    At least in IE7 you can style the border althogh you can't remove it (set it to none). So setting the color of the border to the same color that your background should do.

    .submitbutton { 
    background-color: #fff;
    border: #fff dotted 1px; 
    }
    

    if your background is white.

提交回复
热议问题