How To Remove Outline Border From Input Button

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

    Given the html below:

    
    

    In the css style do the following:

    .btn-without-border:focus {
        border: none;
        outline: none;
    }
    

    This code will remove button border and will disable button border focus when the button is clicked.

提交回复
热议问题