How do I remove the blue border that appears when clicking on a uib-accordion-heading?

后端 未结 5 2453
爱一瞬间的悲伤
爱一瞬间的悲伤 2021-02-19 14:24

I\'ve tried the solutions presented in the following questions to no avail:

Remove blue border from css custom-styled button in Chrome

How to remove the blue box

5条回答
  •  不要未来只要你来
    2021-02-19 14:32

    Chrome is adding the blue line for accessability reason. You can remove it by adding this to your CSS. But note that this is kind of "brute force" to hide all focus outlines that may help users to find the focused element.

    *:focus {
        outline: none !important;
    }
    

提交回复
热议问题