How To Remove Outline Border From Input Button

后端 未结 14 1602
有刺的猬
有刺的猬 2020-12-02 08:43

when click somewhere else the border disappears, tried onfocus none, but didn\'t help, how to make ugly button border disappear when click on?

14条回答
  •  失恋的感觉
    2020-12-02 09:38

    It's greatly simple than you think. When the button is focussed, apply the outline property, like this:

    button:focus {
        outline: 0 !important;
    }
    

    But when I use none value, it doesn't work for me.

提交回复
热议问题