Advertisement
Guest User

Mobile show

a guest
Aug 14th, 2014
634
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.85 KB | None | 0 0
  1. <head>
  2. <!--Onderstaande CSS-code voor het tonen van bepaalde content op mobiel --!>
  3. <style type="text/css">
  4.   .mobileShow { display: none;}
  5.   /* Smartphone Portrait and Landscape */
  6.   @media only screen
  7.   and (min-device-width : 320px)
  8.   and (max-device-width : 480px){ .mobileShow { display: inline;}}
  9. </style>
  10. <!--Onderstaande CSS-code voor het verbergen van bepaalde content op mobiel --!>
  11. <style type="text/css">
  12.   .mobileHide { display: inline;}
  13.   /* Smartphone Portrait and Landscape */
  14.   @media only screen
  15.   and (min-device-width : 320px)
  16.   and (max-device-width : 480px){  .mobileHide { display: none;}}
  17. </style>
  18. <head>
  19.  
  20. <body>
  21. <div class="mobileShow">
  22. Hier tekst of afbeelding die je alleen op mobiel wilt laten zien.
  23. </div>
  24. <div class="mobileHide">
  25. Hier tekst of afbeeldingen die je niet op mobiel wilt laten zien.
  26. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement