Last active
August 8, 2022 20:43
-
-
Save MariaJackson1/4878e38b9858f62808cbd85b54eb40fb to your computer and use it in GitHub Desktop.
Swap Columns (Colin Falcon)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Give the Row that you want to flip the columns on the class 'flip' then use this css: | |
| /***[Switch column order on mobile]***/ | |
| @media only screen and (max-width: 980px) { | |
| .flip { | |
| display: -webkit-flex; | |
| -webkit-flex-direction: column-reverse; | |
| display: flex; | |
| flex-direction: column-reverse !important;} | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment