Advertisement
firoze

Responsive Media Query

Sep 1st, 2015
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. // Responsive Media Query
  2.  
  3.  
  4. /* Medium Layout: 1280px. */
  5. @media only screen and (min-width: 992px) and (max-width: 1200px) {
  6.  
  7.  
  8. }
  9. /* Tablet Layout: 768px. */
  10. @media only screen and (min-width: 768px) and (max-width: 991px) {
  11.  
  12.  
  13. }
  14. /* Mobile Layout: 320px. */
  15. @media only screen and (max-width: 767px) {
  16.  
  17.  
  18. }
  19. /* Wide Mobile Layout: 480px. */
  20. @media only screen and (min-width: 480px) and (max-width: 767px) {
  21.  
  22. }
  23.  
  24.  
  25. *****************************************************************************************************************
  26.  
  27. source link:https://raw.githubusercontent.com/raselahmed7/Quickstart-HTML/master/css/responsive.css
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement