Forums

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

Home Forums CSS A Question About Media Queries

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #165179
    wolfgang1983
    Participant

    For my large screen I am setting the width of 1280px but would like to know what is the best min-width for my media query

    @media (min-width: 1310px) {
    .pagecontainer {
    width: 1280px;
    }
    }

    #165180
    Taufik Nurrohman
    Participant

    You can use max-width instead, and remove the media query:

    .pagecontainer {
      max-width: 1280px;
    }
    
Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.