Last active
November 2, 2020 22:42
-
-
Save tdrayson/4cf4035078d32a9008797075a1a30e67 to your computer and use it in GitHub Desktop.
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
//Set the repeater to 100% width | |
// Set display:block | |
// Add the below to custom css in repeater | |
-webkit-column-count: 4; | |
-moz-column-count: 4; | |
column-count: 4; | |
// Set Div inside repeater to display:block | |
//Add the below to the custom css | |
-webkit-column-break-inside: avoid; | |
page-break-inside: avoid; | |
break-inside: avoid; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment