Bootstrap button - remove outline on Chrome OS X

前端 未结 16 1850
后悔当初
后悔当初 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:04

    Here's the solution:

    #sec-one{padding: 15px 0;}
    p{text-align: center;}
    /*
    * Change the color to any color you want;
    * or set to none if you don't any outline at all.
    */
    *:focus:not(a){
        outline: 2px solid #f90d0e !important;
        box-shadow: none !important;
    }
    
    
    
      
    
    
    

    This works 100% hope it helps you.

提交回复
热议问题