Forums

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

Home Forums CSS Separate CSS files VS One CSS file (@Media)

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #42278
    theste
    Member

    hi all,

    Can I hear your thoughts on which one of these gives best performance in the would of responsive web design.

    Example of separate CSS files –

    Example of one CSS file –

    @media only screen and (min-width: 480px) {
    /* Style */
    }
    @media only screen and (min-width: 768px) {
    /* Style */
    }

    #122423
    Qoopido
    Member

    Afaik any browser will load both stylesheets, no matter if the media query matches or not. so from a pure performance view the latter alternative should be just a tiny bit better. But from a maintainability point of view i would tend to use the first version anyway :)

    #122456
    rosspenman
    Participant

    I think that the first way is better. While browsers will load both, some newer browsers (latest WebKit) will delay the loading of a stylesheet that doesn’t currently apply until after the page has been shown and everything else has been loaded.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.