Bootstrap button - remove outline on Chrome OS X

前端 未结 16 2234
后悔当初
后悔当初 2021-02-01 12:31

I am looking to achieve this: http://getbootstrap.com/javascript/#popovers-examples - scroll to the \"live Demo\" and hit the red popover button, in Chrome on OS X.... It\'s per

16条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-01 13:13

    For any googlers like me, where..

    .btn:focus {
        outline: none;
    }
    

    still didn't work in Google Chrome, the following should completely remove any button glow.

    .btn:focus,.btn:active:focus,.btn.active:focus,
    .btn.focus,.btn:active.focus,.btn.active.focus {
        outline: none;
    }
    

提交回复
热议问题