You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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
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?
The text was updated successfully, but these errors were encountered: