EduardET

custom media query for bg images

Feb 1st, 2018
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.85 KB | None | 0 0
  1. /*Tablet landscape*/
  2. @media (max-width: 1100px) and (min-width: 981px) {
  3.     body.custom-background {
  4.         background-image: url(http://www.video2go.nl/wp-content/uploads/2018/02/Background_width_1024X768.jpg);
  5.     }
  6. }
  7.  
  8.  
  9. /*Tablet portrait*/
  10. @media (max-width: 980px) and (min-width: 768px) {
  11.     body.custom-background {
  12.         background-image: url(http://www.video2go.nl/wp-content/uploads/2018/02/Background_width_980x1307.jpg);
  13.     }
  14. }
  15.  
  16.  
  17. /*Phone landscape*/
  18. @media (max-width: 767px) and (min-width: 481px) {
  19.     body.custom-background {
  20.         background-image: url(http://www.video2go.nl/wp-content/uploads/2018/02/Background_width_1364x767jpg.jpg);
  21.     }
  22. }
  23.  
  24.  
  25. /*Phone portrait*/
  26. @media (max-width: 480px) {
  27.     body.custom-background {
  28.         background-image: url(http://www.video2go.nl/wp-content/uploads/2018/02/Background_width_980x1742.jpg);
  29.     }
  30. }
Advertisement
Add Comment
Please, Sign In to add comment