How to remove focus around buttons on click

后端 未结 30 1082
遇见更好的自我
遇见更好的自我 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 04:52

    For people wanting a pure css way to do that:

    :focus:not(:focus-visible) { outline: none }
    

    This could also work for link and so on, and bonus, it keeps the keyboard accessibilities. Lastly it is ignored by browsers that don’t support :focus-visible

提交回复
热议问题