Any way to set a max height without constraining width?
Opened this issue · 1 comments
skillmatic-co commented
Is there any way to set a max height for columns without also setting width?
I basically just want to have a max number of li elements before it breaks into multiple columns. So if I could do this by setting a number of li elements, or setting a max height, that would work.
Possible?
adamwulf commented
There's two ways to set a max height - one allows for horizontal scrolling and will continually layout new columns for a given height. The other will clip any content that doesn't fit after that height and will append it to an overflow dom element.
Take a look at sample3 and sample5 for examples of the two methods