Responsive Abbreviations with Bootstrap's Utility Classes

I love media queries, but sometimes they are a bit much for when I just want to abbreviate an element’s content for small screens. Bootstrap’s utility classes are a very handy collection of classes that help you do just that.

Here are a few examples of how they can be used to abbreviate your content at small screen sizes.

Shorten button label:

<button class="btn">
Info<span class="hidden-phone">rmation</span>
</button>

Change date format:

<h4 class="date">
<span class="hidden-phone">January 13th, 1986</span>
<span class="visible-phone">1/13/1986</span>
</h4>

Abbreviate country select:

<select name="country">
<option>
<span class="hidden-phone">United States of America</span>
<span class="visible-phone">US</span>
</option>
</select>