Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What happens in Bootstrap between 480 and 768px?

In the docs it has media queries for "up to 480px" and "768px and up", but nothing in between those sizes.

What's up with that? Is it an error in the comments or what?

like image 376
ChocoDeveloper Avatar asked Sep 19 '13 15:09

ChocoDeveloper


People also ask

What are the Bootstrap 3 breakpoints?

Small devices (tablets, 768px and up): @media (min-width: @screen-sm-min) { ... } Medium devices (desktops, 992px and up): @media (min-width: @screen-md-min) { ... } Large devices (large desktops, 1200px and up): @media (min-width: @screen-lg-min) { ... }

How do Bootstrap breakpoints work?

Grid sizes (A.K.A — Breakpoints) Bootstrap uses CSS media queries to create responsive breakpoints that establish a boundary for each grid size. These grid sizes enable you to change the layout of columns to best match different screen widths and devices__ the essence of responsive design.

What are Bootstrap 5 breakpoints?

Breakpoints are customizable widths that determine how your responsive layout behaves across device or viewport sizes in Bootstrap.


1 Answers

Unofficially there is a breakpoint between 480 and 768 called ms (then you use col-ms etc.), see this discussion.

See also my contribution with examples to see the ms hack in action.

Form without the ms hack

Form WITH ms hack

like image 116
firepol Avatar answered Oct 06 '22 01:10

firepol