diff options
| author | Mark Otto <[email protected]> | 2013-08-14 09:44:18 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-08-14 09:44:18 -0700 |
| commit | b9620a1d5e519d1befd14f811c91b87f3c49f00b (patch) | |
| tree | 2d4600e2e651e0393b16d12ec1ed4e4fa3de5f40 | |
| parent | 518c32423e85bca407396012bd1387a7bab9ede2 (diff) | |
| parent | c4568e4c3ba1f4e0caa596e2a6f708edad139eff (diff) | |
| download | bootstrap-b9620a1d5e519d1befd14f811c91b87f3c49f00b.tar.xz bootstrap-b9620a1d5e519d1befd14f811c91b87f3c49f00b.zip | |
Merge pull request #9489 from BBosman/ol-breadcrumb
OL breadcrumbs
| -rw-r--r-- | components.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/components.html b/components.html index b2b68778d..76c346e20 100644 --- a/components.html +++ b/components.html @@ -1445,25 +1445,25 @@ body { padding-bottom: 70px; } <p class="lead">Indicate the current page's location within a navigational hierarchy.</p> <p>Separators are automatically added in CSS through <code>:before</code> and <code>content</code>.</p> <div class="bs-example"> - <ul class="breadcrumb"> + <ol class="breadcrumb"> <li class="active">Home</li> - </ul> - <ul class="breadcrumb"> + </ol> + <ol class="breadcrumb"> <li><a href="#">Home</a></li> <li class="active">Library</li> - </ul> - <ul class="breadcrumb" style="margin-bottom: 5px;"> + </ol> + <ol class="breadcrumb" style="margin-bottom: 5px;"> <li><a href="#">Home</a></li> <li><a href="#">Library</a></li> <li class="active">Data</li> - </ul> + </ol> </div> {% highlight html %} -<ul class="breadcrumb"> +<ol class="breadcrumb"> <li><a href="#">Home</a></li> <li><a href="#">Library</a></li> <li class="active">Data</li> -</ul> +</ol> {% endhighlight %} </div> |
