Advertisement
sharulhafiz

CSS3 @media Rule

Oct 27th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.26 KB | None | 0 0
  1. <style>
  2. /* Desktop/PC View */
  3. @media screen and (min-width: 1024px) {
  4.     #geeksup table.mobile {
  5.         display:none;
  6.     }
  7. }
  8.  
  9. /* Mobile View */
  10. @media screen and (max-width: 1023px) {
  11.     #geeksup table.desktop {
  12.         display:none;
  13.     }
  14. }
  15. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement