I was cleaning up some legacy CSS, and found out several usages of the @media only all
query without any other conditions, which left me puzzled.
Is there a reason I'm not seeing to use a media query like this instead of no media query at all?
I was cleaning up some legacy CSS, and found out several usages of the @media only all
query without any other conditions, which left me puzzled.
Is there a reason I'm not seeing to use a media query like this instead of no media query at all?
It's a hack that allows a query to be applied only in some old browsers (e.g. IE8 and below). You can find more info more about it here.