Responsive Foundation 6.0.0

Sidebar

Utilities » Mixins RetinaLink

Since: 1.0.0 New Issue

A shortcut media query for retina devices. Handy for including separate retina images. Accepts blocks of CSS or Sass.

Examples

Add a retina-specific logo.
			.custom-logo {
					background: url( "images/custom-logo.jpg" );
		
					@include retina {
						background: url( "images/custom-logo-retina.jpg" );
					}
				}
		
Source: _mixins.scss, line 1332 View Source