Created
November 15, 2022 12:35
-
-
Save cdcharlebois/58a9d79b6d3fd094145b12a57f2caf4f to your computer and use it in GitHub Desktop.
Render a listview horizontally
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
.listview-horizontal > ul { | |
display: flex; | |
flex-wrap: wrap; | |
} | |
.listview-horizontal > ul > li { | |
min-width: 200px; | |
flex: 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment