How To Remove Outline Border From Input Button

后端 未结 14 1604
有刺的猬
有刺的猬 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:23

    Set both the outline and the box-shadow properties of the button to none and make them important.

    input[type="button"] {
        outline: none !important;
        box-shadow: none !important;
    } 
    


    The reason for setting the values to important is that, if you are using other CSS libraries or frameworks like Bootstrap, it might get overridden.

提交回复
热议问题