Bootstrap NoGutter
Bootstrap Gutter entfernen
Um das Bootstrap Gutter zu entfernen einfach auf das row element die Klasse no-gutters hinzufügen.
CSS
.row.no-gutters {
margin-right: 0;
margin-left: 0;
& > [class^="col-"],
& > [class*=" col-"] {
padding-right: 0;
padding-left: 0;
}
}
Last updated
Was this helpful?