Skip to content

Instantly share code, notes, and snippets.

@mathewtrivett
Last active January 11, 2021 08:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mathewtrivett/27d8e9fdc1a46148b3e51999fbdd94bf to your computer and use it in GitHub Desktop.
Save mathewtrivett/27d8e9fdc1a46148b3e51999fbdd94bf to your computer and use it in GitHub Desktop.
Testing Print CSS - media_queries.scss
/* 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