BS5 Grid Medium
Medium Grid Example
 | XSmall | Small | Medium | Large | Extra Large | XXL |
---|---|---|---|---|---|---|
Class prefix | .col- | .col-sm- | .col-md- | .col-lg- | .col-xl- | .col-xxl- |
Screen width | <576px | >=576px | >=768px | >=992px | >=1200px | >=1400px |
We provided a grid example with classes for small devices in the previous chapter. We divided the two divs (columns) into 25% and 75%:
....
....
That being said, a 50%/50% split might work better on medium-sized devices.
A gadget is considered medium if its screen width falls between 768 and 991 pixels.
The .col-md-* classes will be utilized for medium-sized devices:
....
....
At this point, Bootstrap will advise using classes that have -sm-in them when working with small sizes. Examine and use classes that have -md- in them at the medium size.”
On small devices, the following example will yield a 25%/75% split, and on medium (and big and xlarge) devices, a 50%/50% split. On exceptionally tiny devices, it will stack automatically (100%):
==== Example mukavu ====
Example
Lorem ipsum...
Sed ut perspiciatis...
Note: You do not have to use all 12 of the available columns; just make sure the total comes up to 12 or less.
Using Only Medium
We simply define the .col-md-6 class (not the .col-sm-*) in the example below. Because the class scales up, this implies that medium, big, extra large, and XXL devices will share 50%/50%. On the other hand, it will stack vertically (100% width) for tiny and extra small devices:
Example
Lorem ipsum...
Sed ut perspiciatis...
Auto Layout Columns
One simple method to achieve identical width columns on all devices using Bootstrap 4 is to remove the number from .col-md-* and limit the use of the .col-md class to a predetermined amount of col elements. Bootstrap will determine the number of columns and set the width of each column to match.
Less than 768 pixels on the screen will cause the columns to stack horizontally:
1 of 2
2 of 2
1 of 4
2 of 4
3 of 4
4 of 4