From cfe06e4950ca2c54183ba25d315346942297221e Mon Sep 17 00:00:00 2001 From: Devyn Lowry Date: Tue, 23 Apr 2019 10:33:13 -0400 Subject: [PATCH] Answered Questions --- 03 - CSS/media-query-property.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 03 - CSS/media-query-property.md diff --git a/03 - CSS/media-query-property.md b/03 - CSS/media-query-property.md new file mode 100644 index 0000000..da570b5 --- /dev/null +++ b/03 - CSS/media-query-property.md @@ -0,0 +1,16 @@ + +CSS MEDIA QUERY PROPERTIES + +Aside from + +@media screen AND (...) { +Which handles all media queries for devices with screens, so computers, mobile devices, etc. +} + +Another example of an @media is: + +@media print AND (...) { +This handles all media queries for when a web page is going to be printed on physical paper. +} + +