Skip to content

Instantly share code, notes, and snippets.

@eojeel
Created December 30, 2015 10:45
Show Gist options
  • Select an option

  • Save eojeel/367450ff76dbf939f2a8 to your computer and use it in GitHub Desktop.

Select an option

Save eojeel/367450ff76dbf939f2a8 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