Skip to content

Instantly share code, notes, and snippets.

@pixeloution
Created March 5, 2014 17:27
Show Gist options
  • Save pixeloution/9371975 to your computer and use it in GitHub Desktop.
Save pixeloution/9371975 to your computer and use it in GitHub Desktop.
ul {
margin : 0;
padding : 0;
list-style-type : none;
}
li {
background : rgba(40,255,91,.15);
}
.columns {
-webkit-column-count : 3;
-webkit-column-gap : 10px;
-webkit-column-rule: 1px solid rgba(0,0,0,.2);
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div class='columns'>
<ul>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
<li>[ JUST A LINE ]</li>
</ul>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment