skill-assessment-app/vendor/assets/foundation-emails/docs/pages/visibility.md
2016-08-21 13:41:47 -05:00

33 lines
1.3 KiB
Markdown

---
title: Visibility Classes
description: Selectively show content for different screen sizes.
tags:
- show
- hide
---
Visibility classes allow you to control what content appears on what screen size.
Foundation for Emails has two breakpoints: *small*, which is any email client under 596 pixels wide, and *large*, any client over 596 pixels. This means small generally correlates to mobile clients, and large correlates to desktop clients.
Due to Outlook's lack of support for certain CSS properties, the Foundation for Emails visibility classes should be used in conjunction with conditional comments to ensure that the content is properly hidden (or shown) in Outlook 2007, 2010 and 2013.
<div class="primary callout">
<p>If you're using a visibility class on an image, be sure to apply it to the parent element, not to the image itself.</p>
</div>
**To show content only on mobile clients,** add the class `.hide-for-large` to the element.
**To show content only on desktop clients,** add the class `.show-for-large` to the element.
```inky_example
<callout class="hide-for-large primary">
<p>This callout will only appear on small screens.</p>
</callout>
<callout class="show-for-large alert">
<p>This callout will only appear on large screens.</p>
</callout>
```
*note - `.hide-for-large` is not supported on Gmail and Yahoo email clients.*