Advertisement
vitareinforce

css media breakpoint

Nov 10th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. // Extra Small devices (max 575px)
  2. @media (max-width: 575.98px) {
  3.  
  4. }
  5.  
  6. // Small devices (landscape phones, 576px and up)
  7. @media (min-width: 576px) and (max-width: 767.98px) {
  8.  
  9. }
  10.  
  11. // Medium devices (tablets, 768px and up)
  12. @media (min-width: 768px) and (max-width: 991.98px) {
  13.  
  14. }
  15.  
  16. // Large devices (desktops, 992px and up)
  17. @media (min-width: 992px) and (max-width: 1199.98px) {
  18.  
  19. }
  20.  
  21. // X-Large devices (large desktops, 1200px and up)
  22. @media (min-width: 1200px) and (max-width: 1399.98px) {
  23.  
  24. }
  25.  
  26. // XX-Large devices (larger desktops, 1400px and up)
  27. @media (min-width: 1400px) {
  28.  
  29. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement