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

后端 未结 18 1894
南笙
南笙 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:22

    This is going to work:

    input[type=button]
    {
           filter:chroma(color=#000000);
    }
    

    This works even with button tag, and eventually you can safely use the background-image css property.

提交回复
热议问题