Created
January 12, 2018 14:34
-
-
Save mankutila/7dd9158d9cb9ac574591608d9aebe696 to your computer and use it in GitHub Desktop.
Flex space-between last row fix
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
.row { | |
display: flex; | |
flex-wrap: wrap; | |
justify-content:space-between; | |
} | |
.row:after { | |
content: ""; | |
flex: auto; | |
flex-basis: 208px; //width of the other flex-items for right one-row display; if necessary | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment