Skip to content
Permalink
9369dbddb6
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
16 lines (9 sloc) 322 Bytes

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. }