left-sidebar-check.php has a div tag with a class of just "col-md" (no number) ...why? #385
-
Isn't just "col-md" an invalid class? All the Bootstrap documentation I see seems to suggest a number is needed such as "col-md-8" or "col-md-12" etc. |
Beta Was this translation helpful? Give feedback.
Answered by
bryanwaddington
Nov 27, 2023
Replies: 1 comment 5 replies
-
col-md is a valid class. Without the number, equal columns are created from that breakpoint and up. In the following example there are three equal columns on small and four on medium. On small the fourth column wraps to the next row. https://codepen.io/bryanwadd/pen/dyajMev
|
Beta Was this translation helpful? Give feedback.
5 replies
Answer selected by
currentcreative
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
col-md is a valid class. Without the number, equal columns are created from that breakpoint and up. In the following example there are three equal columns on small and four on medium. On small the fourth column wraps to the next row.
https://codepen.io/bryanwadd/pen/dyajMev