Bootstrap: Remove form field border

后端 未结 3 1664
伪装坚强ぢ
伪装坚强ぢ 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 21:02

    In Bootstrap 4, you can add border-0 class to your element to remove its border.

    Other classes that you can use - Bootstrap 4 Borders

                 /* remove all borders */
             /* remove top border */
           /* remove border on the right */
          /* remove bottom border */
            /* remove border on the left */
    

    And here is a working example for what you asked:

    $("#myButton").click(function() {
      $("#myInput").toggleClass('border-0')
    });
    
    
    
    

提交回复
热议问题