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

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

    I think you can do this setting the outline of the element to none.

    .element {
      outline: none;
     }
    

提交回复
热议问题