diff options
| author | Bas Bosman <[email protected]> | 2013-08-14 15:16:30 +0200 |
|---|---|---|
| committer | Bas Bosman <[email protected]> | 2013-08-14 15:16:30 +0200 |
| commit | c4568e4c3ba1f4e0caa596e2a6f708edad139eff (patch) | |
| tree | 180f29185bdf712e07989a06c2b350ed832d88aa | |
| parent | 1fd51b0fa30f3a5a9fe563be393f2917d3821fbb (diff) | |
| download | bootstrap-c4568e4c3ba1f4e0caa596e2a6f708edad139eff.tar.xz bootstrap-c4568e4c3ba1f4e0caa596e2a6f708edad139eff.zip | |
Ordered 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> |
