@@ -2225,7 +2225,7 @@ For example, <code><section></code> should be wrapped as inline.
<h3id="helper-classes-floats">Quick floats</h3>
<p>Float an element to the left or right with a class. Classes can also be used as mixins.</p>
<p>Float an element to the left or right with a class. <code>!important</code> is included to avoid specificity issues. Classes can also be used as mixins.</p>
{% highlight html %}
<divclass="pull-left">...</div>
<divclass="pull-right">...</div>
...
...
@@ -2280,6 +2280,31 @@ For example, <code><section></code> should be wrapped as inline.
{% endhighlight %}
<h3id="helper-classes-show-hide">Showing and hiding content</h3>
<p>Force an element to be shown or hidden via <code>display</code> with the use of <code>.show</code> and <code>.hide</code> classes. These classes use <code>!important</code> to avoid specificity conflicts, just like the <ahref="../css/#helper-classes-floats">quick floats</a>. They are only available for block level toggling. They can also be used as mixins.</p>
<p>Hide an element to all users <em>except</em> screen readers with <code>.sr-only</code>. Necessary for following <ahref="{{ page.base_url }}getting-started#accessibility">accessibility best practices</a>. Can also be used as a mixin.</p>