Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Other In sass, is it bad for performance to nest media queries?

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #262571
    dylanbos1996
    Participant

    Hi guys, just a question, is it bad for performance to nest media queries?

    what i mean is, is it better to do this:

    div{
       // styles
    }
    @media (max-width: 480)
       div{
          // mobile styles
       }
    }
    

    or this:

    div{
       // styles
       @media (max-width: 480)
           // mobile styles
       }
    }
    
    

    or does it not matter?

Viewing 1 post (of 1 total)
  • The forum ‘Other’ is closed to new topics and replies.