A médialekérdezésnél (@media) használható operátorok:
and = logikai ÉS operátor
<style>
@media screen
and (min-width : 720px)
and (max-width : 800px)
{
Stílusdeklaráció
}
</style>
not = logikai NEM operátor
<style>
@media not screen
and (min-width : 720px)
and (max-width : 800px)
{
Stílusdeklaráció
}
</style>
only = a stílusbeállítások elrejtése a régebbi böngészőprogramok elöl. (ha azok rosszul használnák a kifejezést)
<style>
@media only screen
and (min-width : 720px)
and (max-width : 800px)
{
Stílusdeklaráció
}
</style>