Created
October 4, 2018 20:26
-
-
Save juanbrusco/f3fffc2aa0b5f20545e91fb3ac4ba792 to your computer and use it in GitHub Desktop.
Dividing dynamic content into columns - HTML+CSS
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
<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