Skip to content Skip to sidebar Skip to footer

@media Syntax / Possible Combinations

I've seen some of these...: @media print { ... } @media screen, handheld, print, projection { ... } @media all { ... } @media all and (property:value) { ... } @media screen and (pr

Solution 1:

Check this link out: http://www.w3.org/TR/CSS2/media.html

It looks like it has the possible options that you are looking for.

Solution 2:

Here's the latest W3C recommendation on media queries:

http://www.w3.org/TR/css3-mediaqueries/

Post a Comment for "@media Syntax / Possible Combinations"