How to remove outline in bootstrap 4

前端 未结 7 734
误落风尘
误落风尘 2020-12-20 10:51

I want to remove textbox outline in bootstrap 4 but its not working. please let how can i remove this line.

CSS

         


        
7条回答
  •  轮回少年
    2020-12-20 11:49

    as far as i see from your css, you set the border to 0 then again to 1. replace it as below

    #content #main-content input[type=text]{
     border: 1px solid #ccc;
     border: 0;
     height: 40px;
     padding-left: 10px;
     outline: 0;
    }
    

提交回复
热议问题