Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save design-innovations/bfbb18789687d099dd94fe7858b433a3 to your computer and use it in GitHub Desktop.
Save design-innovations/bfbb18789687d099dd94fe7858b433a3 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