Skip to content

Instantly share code, notes, and snippets.

@bendo01
Created July 3, 2016 23:14
Show Gist options
  • Select an option

  • Save bendo01/164bcfedc3df80c122c79437d45df960 to your computer and use it in GitHub Desktop.

Select an option

Save bendo01/164bcfedc3df80c122c79437d45df960 to your computer and use it in GitHub Desktop.
HTML/CSS: Very Simple/Lightweight Breadcrumb
<style type="text/css">
.breadcrumb li {
display: inline;
}
.breadcrumb li+li:before {
content:"» ";
}
</style>
<ol class="breadcrumb">
<li><a href="#">Home</a></li>
<li><a href="#">Category</a></li>
<li><a href="#">Product</a></li>
<li class="current"><a href="#">Options</a></li>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment