Skip to content

Instantly share code, notes, and snippets.

@waseemsadiq
Created November 6, 2020 13:26
Show Gist options
  • Save waseemsadiq/af24359f040c8dca5deb5b02388a5489 to your computer and use it in GitHub Desktop.
Save waseemsadiq/af24359f040c8dca5deb5b02388a5489 to your computer and use it in GitHub Desktop.
tailwind .flex to IE friendly code for dummies
/* IE9, IE10, IE11 | see: https://stackoverflow.com/a/30743013 */
@media screen and (min-width:0\0) {
.flex {
display:table;
width:100%;
}
.flex > div {
display:table-cell;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment