Advertisement
Guest User

CSS Viewports

a guest
May 24th, 2015
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.36 KB | None | 0 0
  1. body::before {
  2.   background-color: #000;
  3.   color: #fff;
  4.   content: "XS";
  5.   font-size: 0.5em;
  6.   top: 0;
  7.   left: 0;
  8.   padding: 0.2em;
  9.   position: fixed;
  10.   z-index: 9999999;
  11. }
  12. @media (min-width : 768px) { body::before { content: "SM"; }}
  13. @media (min-width : 992px) { body::before { content: "MD"; }}
  14. @media (min-width : 1200px) { body::before { content: "LG"; }}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement