aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2016-02-08 22:13:30 -0800
committerMark Otto <[email protected]>2016-02-08 22:13:30 -0800
commitc8bd62b214add34ab133cb11241d528ef3402ef0 (patch)
tree91276ae7e86f03d8c4709c69896c439b9fe21712
parent145fa2ff9958cdb965420c2cf1fb2ab0de4a5bfe (diff)
downloadbootstrap-c8bd62b214add34ab133cb11241d528ef3402ef0.tar.xz
bootstrap-c8bd62b214add34ab133cb11241d528ef3402ef0.zip
clarify, fix margin
-rw-r--r--docs/components/navbar.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/components/navbar.md b/docs/components/navbar.md
index b359d66a0..98e48fa77 100644
--- a/docs/components/navbar.md
+++ b/docs/components/navbar.md
@@ -56,7 +56,7 @@ Here's an example of all the sub-components included in a default, light navbar:
### Brand
-The `.navbar-brand` can be applied to most elements, but an anchor works best.
+The `.navbar-brand` can be applied to most elements, but an anchor works best as some elements might require utility classes or custom styles.
{% example html %}
<nav class="navbar navbar-light bg-faded">
@@ -64,7 +64,7 @@ The `.navbar-brand` can be applied to most elements, but an anchor works best.
</nav>
<nav class="navbar navbar-light bg-faded">
- <h1 class="navbar-brand">Navbar</h1>
+ <h1 class="navbar-brand m-b-0">Navbar</h1>
</nav>
{% endexample %}