Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Avesha-2016/a13915651ead492818cbe39f32962d8d to your computer and use it in GitHub Desktop.
Save Avesha-2016/a13915651ead492818cbe39f32962d8d to your computer and use it in GitHub Desktop.
Убрать отступы в колонках bootstrap (fullwidth)
//CSS
.no-gutter > [class*='col-'] {
padding-right:0;
padding-left:0;
}
//HTML
<div class="row no-gutter">
<div class="col-md-4">
...
</div>
<div class="col-md-4">
...
</div>
<div class="col-md-4">
...
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment