Advertisement
phpface

Auto Zoom

Jul 27th, 2023
1,019
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.19 KB | None | 0 0
  1. /** Apply to devices smaller than 1024px in width. **/
  2. @media only screen and (max-width: 1024px) {
  3.     body{
  4.         zoom: 80%;
  5.     }
  6. }
  7.  
  8.  
  9. /** Apply to all device sizes **/
  10. body{
  11.     zoom: 80%;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement