Commit 3b7e5214 authored by Tom Pietschker's avatar Tom Pietschker

remove navbar-inner

parent a1913cbe
...@@ -819,16 +819,14 @@ title: Components ...@@ -819,16 +819,14 @@ title: Components
<p>You can easily add dividers to your nav links with an empty list item and a simple class. Just add the appropriate class to <code>&lt;li&gt;</code> elements between links. Dividers will be horizontal to start, but at resolutions above 768px they become vertical with the navigation.</p> <p>You can easily add dividers to your nav links with an empty list item and a simple class. Just add the appropriate class to <code>&lt;li&gt;</code> elements between links. Dividers will be horizontal to start, but at resolutions above 768px they become vertical with the navigation.</p>
<div class="bs-docs-example"> <div class="bs-docs-example">
<div class="navbar"> <div class="navbar">
<div class="navbar-inner"> <ul class="nav">
<ul class="nav"> <li class="active"><a href="#">Home</a></li>
<li class="active"><a href="#">Home</a></li> <li class="divider"></li>
<li class="divider"></li> <li><a href="#">Link</a></li>
<li><a href="#">Link</a></li> <li class="divider"></li>
<li class="divider"></li> <li><a href="#">Link</a></li>
<li><a href="#">Link</a></li> <li class="divider"></li>
<li class="divider"></li> </ul>
</ul>
</div>
</div> </div>
</div><!-- /example --> </div><!-- /example -->
{% highlight html linenos %} {% highlight html linenos %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment