From: Geoff Kimball Date: Tue, 19 Jan 2016 22:17:59 +0000 (-0800) Subject: Add example of using breakpoint() multiple times within @media X-Git-Tag: v6.1.2~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c6f2e635b5dde29e5e67557d76fec201fcb2bcc9;p=thirdparty%2Ffoundation%2Ffoundation-sites.git Add example of using breakpoint() multiple times within @media --- diff --git a/docs/pages/media-queries.md b/docs/pages/media-queries.md index 6e88d217b..e66da7d5d 100644 --- a/docs/pages/media-queries.md +++ b/docs/pages/media-queries.md @@ -165,6 +165,14 @@ The functionality of the `breakpoint()` mixin comes from an internal function, a } ``` +This can be used to combine multiple media queries together. + +```scss +@media screen and #{breakpoint(medium)} and #{breakpoint(xlarge down)} { + // Medium to extra large styles +} +``` + --- ## JavaScript