Last active
January 11, 2021 08:30
-
-
Save mathewtrivett/27d8e9fdc1a46148b3e51999fbdd94bf to your computer and use it in GitHub Desktop.
Testing Print CSS - media_queries.scss
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Learn more about media queries | |
* https://developer.mozilla.org/en-US/docs/Web/CSS/@media | |
*/ | |
@media all { | |
/* | |
* Styling rules for all media | |
*/ | |
} | |
@media screen { | |
/* | |
* Styling rules for screens | |
*/ | |
} | |
@media print { | |
/* | |
* Styling rules for print | |
*/ | |
} | |
@media speech { | |
/* | |
* Styling rules for speech synthesis | |
*/ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment