Bootstrap: Remove form field border

后端 未结 3 1791
伪装坚强ぢ
伪装坚强ぢ 2021-02-01 20:13

I am new to CSS and I am using Bootstrap and I want to use forms in 2 ways: With or without borders around the form fields. How can I achieve that best? Here is an example of a

3条回答
  •  感动是毒
    2021-02-01 20:45

    I went straight to the "inputs".

    input {
        border: 0;
    }
    
    
    
        
    This will remove all the borders of your form-inputs.

提交回复
热议问题