`, add a `role="navigation"` to every navbar to explicitly identify it as a landmark region for users of assistive technologies.
## Supported content
@@ -48,7 +48,7 @@ Here's an example of all the sub-components included in a default, light navbar:
About
-
@@ -78,7 +78,7 @@ Here are some examples to show what we mean.
About
-
@@ -99,7 +99,7 @@ Here are some examples to show what we mean.
About
-
@@ -120,7 +120,7 @@ Here are some examples to show what we mean.
About
-
diff --git a/docs/components/utilities.md b/docs/components/utilities.md
index c2ac73bbc1..728cd078dc 100644
--- a/docs/components/utilities.md
+++ b/docs/components/utilities.md
@@ -168,25 +168,25 @@ Use a generic close icon for dismissing content like modals and alerts. **Be sur
{% endexample %}
-## Floats
+## Responsive floats
-Float an element to the left or right with a class. `!important` is included to avoid specificity issues. Classes can also be used as mixins.
+These utility classes float an element to the left or right, or disable floating, based on the current viewport size using the [CSS `float` property](https://developer.mozilla.org/en-US/docs/Web/CSS/float). `!important` is included to avoid specificity issues. These use the same viewport width breakpoints as the grid system.
+
+Two similar non-responsive mixins (`pull-left` and `pull-right`) are also available.
{% example html %}
-
Float left
-
Float right
+
Float left on all viewport sizes
+
Float right on all viewport sizes
+
Don't float on all viewport sizes
+
+
Float left on viewports sized SM (small) or wider
+
Float left on viewports sized MD (medium) or wider
+
Float left on viewports sized LG (large) or wider
+
Float left on viewports sized XL (extra-large) or wider
{% endexample %}
{% highlight scss %}
-// Classes
-.pull-left {
- float: left !important;
-}
-.pull-right {
- float: right !important;
-}
-
-// Usage as mixins
+// Related simple non-responsive mixins
.element {
@include pull-left;
}
diff --git a/docs/content/images.md b/docs/content/images.md
index 1f9abc982c..2ed58e2a03 100644
--- a/docs/content/images.md
+++ b/docs/content/images.md
@@ -50,13 +50,13 @@ Add classes to an `
![]()
` element to easily style images in any project.
Align images with the [helper float classes]({{ site.baseurl }}/components/utilities/#floats) or [text alignment classes]({{ site.baseurl }}/components/utilities/#text-alignment). A simple centering class can also be used for `block` level images.
{% highlight html %}
-

-

+

+

{% endhighlight %}
diff --git a/docs/examples/album/index.html b/docs/examples/album/index.html
index ccab2760cb..2028ba1201 100644
--- a/docs/examples/album/index.html
+++ b/docs/examples/album/index.html
@@ -104,7 +104,7 @@