Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #13 from bpd01001/features/media-query-property
Answered Questions
  • Loading branch information
bpd01001 committed May 10, 2019
2 parents 05f49d0 + cfe06e4 commit 9369dbd
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions 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.
}


0 comments on commit 9369dbd

Please sign in to comment.