Search code examples
cssmedia-type

CSS3 Media Types: "All" devices vs non-defined


Is there any difference between:

@media all and (min-width: 480px) {
    ...
}

and

@media (min-width: 480px) {
    ...
}

Solution

  • From https://www.w3.org/TR/css3-mediaqueries/ (W3C Recommendation 19 June 2012)

    I.e. these are identical:

    @media all and (min-width:500px) { … }
    @media (min-width:500px) { … }