Skip to content

Instantly share code, notes, and snippets.

@ipetepete
Created January 4, 2012 16:52
Show Gist options
  • Save ipetepete/1560933 to your computer and use it in GitHub Desktop.
Save ipetepete/1560933 to your computer and use it in GitHub Desktop.
Tree List
/**
* Tree List
*/
nav{ font: 120%/1.5 sans-serif; }
nav ul { -webkit-padding-start: 15px; list-style:none; }
nav li { line-height: 1.5em; -webkit-padding-start: 0.8em; display:list-item; }
nav li:before { content: "» "; color: lightblue; font-size: 1.1em; margin-top: -5px; margin-right: 5px; vertical-align: middle; display: inline-block;}
<nav class="category_tree">
<ul>
<li><a href="#">Level 1</a>
<li class="active"><a href="#">Level 1</a>
<ul>
<li class="active"><a href="#">Level 2</a>
<ul>
<li class="active"><a href="#">Level 3</a>
</ul>
</ul>
<li><a href="#">Level 1</a>
</ul>
</nav>
{"view":"split","prefixfree":"1","page":"html"}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment