Bootstrap container-fluid padding

后端 未结 13 2052
情话喂你
情话喂你 2021-02-12 22:38

The following HTML is generating unwanted padding:

 
13条回答
  •  情深已故
    2021-02-12 23:30

    Just add this css

    .container-fluid {
       padding: 0px;
    }
    

    Your Code with this CSS

    EDIT:

    With this all the page going to have 0 padding. If you only want 0 padding in that part of the page maybe you should create a class "container-0padding" with that css code for example.

提交回复
热议问题