Advertisement
musioks

CSS Media Queries Breakpoints

Oct 17th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.44 KB | None | 0 0
  1. /** --------for-phone-only -----------**/
  2.   @media (max-width: 767px){
  3.  
  4.  
  5.  
  6. }
  7.   /**------------ for-tablet-portrait-up ------------**/
  8.   @media (min-width: 768px) and (max-width: 991px)
  9.   {
  10.  
  11.    }
  12.    /**  ------------for-tablet-landscape-up -----------**/
  13.   @media (min-width: 992px) and (max-width: 1199px)
  14.   {
  15.  
  16.    
  17.  
  18.   }
  19.    /** -----------for-desktop-up -------------------**/
  20.   @media (min-width: 1200px)
  21.   {
  22.    
  23.  
  24.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement