diff --git a/docs/components/navs.md b/docs/components/navs.md
index bea1109ce9..aeac3ed3a8 100644
--- a/docs/components/navs.md
+++ b/docs/components/navs.md
@@ -47,6 +47,38 @@ Classes are used throughout, so your markup can be super flexible. Use `
`s l
{% endexample %}
+## Inline
+
+Easily space out nav links in a horizontal band with `.nav-inline`. Longer series of links will wrap to a new line.
+
+{% example html %}
+
+{% endexample %}
+
+The same works for a navigation build with lists.
+
+{% example html %}
+
+{% endexample %}
+
## Tabs
Takes the basic nav from above and adds the `.nav-tabs` class to generate a tabbed interface. Use them to create tabbable regions with our [tab JavaScript plugin](#javascript-behavior).
diff --git a/scss/_nav.scss b/scss/_nav.scss
index 5714c77eb7..48249ee7b0 100644
--- a/scss/_nav.scss
+++ b/scss/_nav.scss
@@ -32,6 +32,11 @@
// Nav inline
.nav-inline {
+ .nav-item {
+ display: inline-block;
+ }
+
+ .nav-item + .nav-item,
.nav-link + .nav-link {
margin-left: 1rem;
}