bootstrap container-fluid - remove margins the right way (overflow)

后端 未结 3 1039
忘掉有多难
忘掉有多难 2021-02-04 04:23

How can I remove all margins from boostrap container-fluid class and its rows?

.container-fluid { padding: 0;}

This does basically

3条回答
  •  南旧
    南旧 (楼主)
    2021-02-04 04:54

    If you want to remove margin, overidding the Bootstrap class or div (container-fluid, html, body) is not the best thing to do. I think it's better to create a separate class and add it in elements. If you want to remove all margins :

    .remove-all-margin{
    margin:0 ! important;
    }
    

    If you want to remove all margins and paddings :

    .remove-all-margin-padding{
    margin:0 ! important;
    padding:0 ! important;
    }
    

提交回复
热议问题