I am trying to hide a media query from being printed, so I came up with @media not print and (min-width:732px)
. But for whatever reason, this (and many variations I have tried) does not display as I would expect in browsers.
The only option I can think of is to use @media screen and (max-width:732px)
, but I would like to avoid this as it excludes all the other media types besides screen.