Created
September 11, 2017 09:44
-
-
Save louisebolden/095db85fcdfac50662c787d8786841f3 to your computer and use it in GitHub Desktop.
A List Element with CSS Columns and `column-break-inside: avoid;`, to display the border-bottom on each list item correctly.
This file contains 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
ol, ul { | |
columns: 3; | |
-webkit-column-break-inside: avoid; | |
} | |
li { | |
border-bottom: 1px solid silver; | |
margin-bottom: 1rem; | |
padding-bottom: 1rem; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Result:
