How to remove focus around buttons on click

后端 未结 30 1030
遇见更好的自我
遇见更好的自我 2020-12-02 04:24

My buttons all have a highlight around them after I click them. This is in Chrome.

\"Unselected\"

30条回答
  •  醉梦人生
    2020-12-02 05:11

    I found this Q and A on another page, and overriding the button focus style worked for me. This problem may be specific to MacOS with Chrome.

    .btn:focus {
      outline: none;
      box-shadow: none;
    }
    

    Note though that this has implications for accessibility and isn't advised until you have a good consistent focus state for your buttons and inputs. As per the comments below, there are users out there who cannot use mice.

提交回复
热议问题