From 40298ddbf1c26e2c9b7f67a39eeb35734417cc7e Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Tue, 19 Jun 2012 15:25:35 -0700 Subject: add note to components about nav list nesting --- docs/components.html | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) (limited to 'docs/components.html') diff --git a/docs/components.html b/docs/components.html index d70218163..825e9fdac 100644 --- a/docs/components.html +++ b/docs/components.html @@ -833,18 +833,16 @@
 <ul class="nav nav-list">
-  <li class="nav-header">
-    List header
-  </li>
-  <li class="active">
-    <a href="#">Home</a>
-  </li>
-  <li>
-    <a href="#">Library</a>
-  </li>
+  <li class="nav-header">List header</li>
+  <li class="active"><a href="#">Home</a></li>
+  <li><a href="#">Library</a></li>
   ...
 </ul>
 
+

+ Note + For nesting within a nav list, include class="nav nav-list" on any nested <ul>. +

Horizontal dividers

Add a horizontal divider by creating an empty list item with the class .divider, like so:

-- cgit v1.2.3