Last active
February 28, 2020 13:24
-
-
Save wintercounter/5e3f4915c714022a8dd048f55b48908d to your computer and use it in GitHub Desktop.
Some extra reset on top of your reset/normlizer you already using to make block elements flex by default
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
/* @see https://developers.google.com/web/updates/2013/10/Flexbox-layout-isn-t-slow */ | |
div, article, aside, details, figcaption, figure, | |
footer, header, hgroup, menu, nav, section { | |
display: flex; | |
flex-direction: column; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment