Created
November 9, 2016 19:49
-
-
Save Farmatique/ae57c0b12b342b705355c3ec169f7612 to your computer and use it in GitHub Desktop.
wrap to the next line with flex
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
ul{ | |
display: flex; | |
&::before, &::after { | |
content: ''; | |
width: 100%; | |
order: 1; | |
-webkit-order: 1; | |
} | |
>li{ | |
display: inline-block; | |
&:nth-last-child(-n+3){ // third from the end | |
order: 2; | |
-webkit-order: 2; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment