For the complete documentation index, see llms.txt. This page is also available as Markdown.

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