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

后端 未结 5 2475
爱一瞬间的悲伤
爱一瞬间的悲伤 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:50

    Everyone who has a problem with not working outline: 0/none - try to set:

    :focus {
      outline: 0 !important;
      box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
    }
    

提交回复
热议问题