CSS3 Media Queries


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



Copy this code and paste it in your HTML
  1. @media only screen and (min-width: 480px) {
  2. }
  3. @media only screen and (min-width: 600px) {
  4. }
  5. @media only screen and (min-width: 768px) {
  6. }
  7. @media only screen and (min-width: 1024px) {
  8. }
  9. @media only screen and (min-width: 1200px) {
  10. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.