Created
July 3, 2016 23:14
-
-
Save bendo01/164bcfedc3df80c122c79437d45df960 to your computer and use it in GitHub Desktop.
HTML/CSS: Very Simple/Lightweight Breadcrumb
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
| <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