piterskiy

Detect Current Viewport Context On Page

Dec 5th, 2015
23,808
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.32 KB | None | 0 0
  1. body::before {
  2.   content: "xs";
  3.   position: fixed;
  4.   top: 0;
  5.   left: 0;
  6.   z-index: 9999999;
  7.   background-color: #000;
  8.   color: #fff;
  9. }
  10. @media (min-width : 768px) { body::before { content: "sm"; }}
  11. @media (min-width : 992px) { body::before { content: "md"; }}
  12. @media (min-width : 1200px) { body::before { content: "lg"; }}
Advertisement
Add Comment
Please, Sign In to add comment