CSS media min max width


/ Published in: Other
Save to your folder(s)



Copy this code and paste it in your HTML
  1. @media all and (min-width: 1001px) {
  2. #wrapper {}
  3. }
  4.  
  5. @media all and (max-width: 1000px) and (min-width: 700px) {
  6. #wrapper {}
  7. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.