> For the complete documentation index, see [llms.txt](https://developers.jseidl.at/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developers.jseidl.at/css/bootstrap-nogutter.md).

# Bootstrap NoGutter

Um das Bootstrap Gutter zu entfernen einfach auf das **row** element die Klasse **no-gutters** hinzufügen.

### CSS

<pre class="language-scss" data-line-numbers><code class="lang-scss">.row.no-gutters {
    margin-right: 0;
<strong>    margin-left: 0;
</strong>    &#x26; > [class^="col-"],
    &#x26; > [class*=" col-"] {
        padding-right: 0;
        padding-left: 0;
    }
}
</code></pre>
