Advertisement
shaashwato1308

CSS - Responsive Media Queries

Oct 1st, 2015
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.61 KB | None | 0 0
  1. /*  ==========================================================================
  2.     Large desktops and laptops
  3.     ========================================================================== */
  4.     @media (min-width: 1200px) {
  5.        
  6.     }
  7. /*  ==========================================================================
  8.     Portrait tablets and medium desktops
  9.     ========================================================================== */
  10.     @media (min-width: 992px) and (max-width: 1199px) {
  11.  
  12.     }
  13. /*  ==========================================================================
  14.     Portrait tablets and small desktops
  15.     ========================================================================== */
  16.     @media (min-width: 768px) and (max-width: 991px) {
  17.  
  18.     }
  19. /*  ==========================================================================
  20.     Landscape phone to portrait tablet
  21.     ========================================================================== */
  22.     @media (max-width: 767px) {
  23.        
  24.     }
  25. /*  ==========================================================================
  26.     Landscape phones
  27.     ========================================================================== */
  28.     @media (max-width: 480px) {
  29.  
  30.         }
  31. /*  ==========================================================================
  32.     Portrait Mobile
  33.     ========================================================================== */
  34.     @media (max-width: 320px) {
  35.        
  36.     }
  37. /*  ==========================================================================
  38.     Mobile
  39.     ========================================================================== */
  40.     @media (min-width: 240px) and  (max-width: 319px){
  41.    
  42.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement