Skip to content

Instantly share code, notes, and snippets.

@juanbrusco
Created October 4, 2018 20:26
Show Gist options
  • Save juanbrusco/f3fffc2aa0b5f20545e91fb3ac4ba792 to your computer and use it in GitHub Desktop.
Save juanbrusco/f3fffc2aa0b5f20545e91fb3ac4ba792 to your computer and use it in GitHub Desktop.
Dividing dynamic content into columns - HTML+CSS
<html>
<ul>
<li>ALFA ROMEO</li>
<li>AUDI</li>
<li>AUSTIN</li>
<li>BMW</li>
.. etc etc
<li>TOYOTA</li>
<li>TRIUMPH</li>
<li>VAUXHALL</li>
<li>VOLKSWAGEN</li>
<li>VOLVO</li>
</ul>
</html>
<stylesheet>
column-count:5;
column-gap:40px;
column-rule-width:1px;
column-rule-style:outset;
column-rule-color:#ccc;
</stylesheet>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment