How can I remove all margins from boostrap container-fluid class and its rows?
container-fluid
.container-fluid { padding: 0;}
This does basically
it is always a better way to add a custom class to the elements that you want to get rid of the margins rather than overriding all bootstrap elements.
row.no-margin{ margin:0 ! important; }