Change Bootstrap input focus blue glow

后端 未结 19 2205
抹茶落季
抹茶落季 2020-11-30 16:53

Does anyone know the how to change Bootstrap\'s input:focus? The blue glow that shows up when you click on an input field?

19条回答
  •  醉话见心
    2020-11-30 17:16

    This will work 100% use this:

    .form-control, .form-control:focus{
       box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
       border: rgba(255, 255, 255, 0);
    }
    

提交回复
热议问题