Created
December 30, 2015 10:45
-
-
Save eojeel/367450ff76dbf939f2a8 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