Guest User

Untitled

a guest
Nov 17th, 2017
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <html>
  2. <head>
  3. <style>
  4. @media print { /* no effect: */
  5. .no-print { display:none; }
  6. }
  7. </style>
  8. <!-- no effect either:
  9. <link rel="stylesheet" href="print.css" media="print"><!-- -->
  10. </head><body>
  11. <h1>Some Title</h1>
  12. <img class="no-print" src="http://dummyimage.com/1024x100/000/ffffff&text=This+banner+should+vanish+in+print+view">
  13. <br><br><br>This is the only text
  14. </body></html>
  15.  
  16. <html><head>
  17. <title>Reader View shows only the browser in reader view</title>
  18. </head>
  19. <body>
  20. Everything outside the main div tag vanishes in Reader View<br>
  21. <img class="no-print" src="http://dummyimage.com/1024x100/000/ffffff&text=This+banner+should+vanish+in+print+view">
  22. <div>
  23. <h1>H1 tags outside ot a p tag are hidden in reader view</h1>
  24. <img class="no-print" src="http://dummyimage.com/1024x100/000/ffffff&text=This+banner+is resized+in+print+view">
  25. <p>
  26. 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  27. 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  28. 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  29. 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  30. 123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789
  31. 123456789 123456
  32. </p>
  33. </div>
  34. </body>
  35. </html>
Add Comment
Please, Sign In to add comment