Skip to content

Instantly share code, notes, and snippets.

@MariaJackson1
Last active August 8, 2022 20:43
Show Gist options
  • Select an option

  • Save MariaJackson1/4878e38b9858f62808cbd85b54eb40fb to your computer and use it in GitHub Desktop.

Select an option

Save MariaJackson1/4878e38b9858f62808cbd85b54eb40fb to your computer and use it in GitHub Desktop.
Swap Columns (Colin Falcon)
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