Reputation: 58
The grid system as I understand
so, don't you guys feel like the xs class is completely not small and definitely not extra. I'm thinking of making a tiny breakpoint, and want to know is it common to do this or is there something I'm not getting right!! and what is the easiest way to do this?
Upvotes: 2
Views: 330
Reputation: 2252
See Bootstrap 4: http://getbootstrap.com/docs/4.0/layout/grid/
They change the breakpoints to
So I think the XS breakpoint was to wide.
Upvotes: 0
Reputation: 12590
Just add a media query in your custom css file for a max screen size of 400 pixels for this. I do that quite often. Especially for old iPhones, which render HTML at a width of 350 pixels.
@media screen and (max-width: 400px) {
...
}
Upvotes: 1