Bootstrap: Can we add sm, md, lg & large to .no-gutters?

Created on 10 Apr 2018  路  8Comments  路  Source: twbs/bootstrap

I find when I'm making websites that I'll often want .no-gutters only on small screens, to keep a 3 column grid on small devices. This is dependent on the design of course, but I find it useful.

Can we look at adding .no-gutters-sm, .no-gutters-md, .no-gutters-lg and .no-gutters-xl to use this Bootstrap-specific property with breakpoints?

Current: https://getbootstrap.com/docs/4.0/layout/grid/#no-gutters
Notation with breakpoints: https://getbootstrap.com/docs/4.0/utilities/spacing/#notation

css feature v4

Most helpful comment

u could use
<div class="px-0 px-sm-3"></div>
p3=1rem

All 8 comments

Technically, Bootstrap does not need the .no-gutters class. You could just use the spacing classes. But I know what you're saying... it's easier to just type into one class attribute.

Duplicate of #26200

Technically, Bootstrap does not need the .no-gutters class. You could just use the spacing classes. But I know what you're saying... it's easier to just type into one class attribute.

@LarryAzevedo, I've used your solution before in most cases. But we have a case where we want to keep gutters on most screens, but then only on sm hide the gutters. Instead of using a media query and setting margin-left: 0; and margin-right: 0; I'd like to use a Bootstrap class.

Yes! Please add this :)

Jumping on the bandwagon. I also don't see how spacing classes can solve the problem with the needed negative margin on the row element as there is not css class available putting a negative margin on an element (easily done by messing with the sass files, but for "normal" folk not an option).

@pepebe You may want to look closer at the documentation: https://getbootstrap.com/docs/4.4/utilities/spacing/#negative-margin

@ffoodd Totally missed that one. Thanks!

.mt-n1 {
  margin-top: -0.25rem !important;
}

u could use
<div class="px-0 px-sm-3"></div>
p3=1rem

Was this page helpful?
0 / 5 - 0 ratings

Related issues

cvrebert picture cvrebert  路  3Comments

devfrey picture devfrey  路  3Comments

tiendq picture tiendq  路  3Comments

ziyi2 picture ziyi2  路  3Comments

IamManchanda picture IamManchanda  路  3Comments