Remove blue border from css custom-styled button in Chrome

前端 未结 22 960
闹比i
闹比i 2020-11-22 17:10

I\'m working on a web page, and I want custom-styled

22条回答
  •  孤街浪徒
    2020-11-22 17:23

    I had the same problem with bootstrap. I solved with both outline and box-shadow

    .btn:focus, .btn.focus {
        outline: none !important;
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0) !important; // or none
    }
    

提交回复
热议问题