Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created November 9, 2016 19:49
Show Gist options
  • Save Farmatique/ae57c0b12b342b705355c3ec169f7612 to your computer and use it in GitHub Desktop.
Save Farmatique/ae57c0b12b342b705355c3ec169f7612 to your computer and use it in GitHub Desktop.
wrap to the next line with flex
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