Created
May 24, 2018 14:07
-
-
Save alegut/5fc68e79075482a16c96e2c68ede6e8c to your computer and use it in GitHub Desktop.
CSS columns and avoid
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
.ko_menu_slider .owl-wrapper .inner_slide { | |
-webkit-column-count: 2; /* Chrome, Safari, Opera */ | |
-moz-column-count: 2; /* Firefox */ | |
column-count: 2; | |
} | |
.ko_menu_slider .owl-wrapper .inner_slide div{ | |
-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