I'm generating a list of links dynamically using PHP, but this list is very large and I would like it when it reaches a certain height in px the column would be broken by 2, 3, or as many as needed.
Eg: Make a list even though it is in HTML
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
<li>5</li>
<li>6</li>
</ul>
appear in 2 or more columns when rendered.
Is there any way to do this using CSS and Bootstrap 3?