<pclass="lead">For faster mobile-friendly development, use these utility classes for showing and hiding content by device via media query. Also included are utility classes for toggling content when printed.</p>
<pclass="lead">For faster mobile-friendly development, use these utility classes for showing and hiding content by device via media query. Also included are utility classes for toggling content when printed.</p>
<p>Try to use these on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation.<strong>Responsive utilities are currently only available for block and table toggling.</strong> Use with inline and table elements is currently not supported.</p>
<p>Try to use these on a limited basis and avoid creating entirely different versions of the same site. Instead, use them to complement each device's presentation.</p>
@@ -2599,28 +2599,28 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -2599,28 +2599,28 @@ For example, <code><section></code> should be wrapped as inline.
</thead>
</thead>
<tbody>
<tbody>
<tr>
<tr>
<th><code>.visible-xs</code></th>
<th><code>.visible-xs-*</code></th>
<tdclass="is-visible">Visible</td>
<tdclass="is-visible">Visible</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
</tr>
</tr>
<tr>
<tr>
<th><code>.visible-sm</code></th>
<th><code>.visible-sm-*</code></th>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-visible">Visible</td>
<tdclass="is-visible">Visible</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
</tr>
</tr>
<tr>
<tr>
<th><code>.visible-md</code></th>
<th><code>.visible-md-*</code></th>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-visible">Visible</td>
<tdclass="is-visible">Visible</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
</tr>
</tr>
<tr>
<tr>
<th><code>.visible-lg</code></th>
<th><code>.visible-lg-*</code></th>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
<tdclass="is-hidden">Hidden</td>
...
@@ -2660,6 +2660,33 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -2660,6 +2660,33 @@ For example, <code><section></code> should be wrapped as inline.
</table>
</table>
</div>
</div>
<p>The <code>.visible-*-*</code> classes for each breakpoint come in 3 variations, depending on the CSS <code>display</code> property value applied when the element is visible:</p>
<divclass="table-responsive">
<tableclass="table table-bordered table-striped">
<thead>
<tr>
<th>Group of classes</th>
<th>CSS <code>display</code></th>
</tr>
</thead>
<tbody>
<tr>
<td><code>.visible-*-block</code></td>
<td><code>display: block;</code></td>
</tr>
<tr>
<td><code>.visible-*-inline</code></td>
<td><code>display: inline;</code></td>
</tr>
<tr>
<td><code>.visible-*-inline-block</code></td>
<td><code>display: inline-block;</code></td>
</tr>
</tbody>
</table>
</div>
<p>So, for extra small (<code>xs</code>) screens for example, the available <code>.visible-*-*</code> classes are: <code>.visible-xs-block</code>, <code>.visible-xs-inline</code>, and <code>.visible-xs-inline-block</code>.</p>
<p>The classes <code>.visible-xs</code>, <code>.visible-sm</code>, <code>.visible-md</code>, and <code>.visible-lg</code> also exist, but are <strong>deprecated</strong> as of v3.1.0. They are approximately equivalent to <code>.visible-*-block</code>, except with additional special cases for <code><table></code>-related elements.</p>
@@ -2686,6 +2717,7 @@ For example, <code><section></code> should be wrapped as inline.
...
@@ -2686,6 +2717,7 @@ For example, <code><section></code> should be wrapped as inline.
</tbody>
</tbody>
</table>
</table>
</div>
</div>
<p>The class <code>.visible-print</code> also exists but is <strong>deprecated</strong> as of v3.1.0. It is approximately equivalent to <code>.visible-print-block</code>, except with additional special cases for <code><table></code>-related elements.</p>