Advertisement
Guest User

Untitled

a guest
Feb 8th, 2013
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. The one i use:
  2. <html>
  3. <body>
  4. <div style="width:100%; height:100%; background-color:transparent;">
  5. <iframe src="http://www.randomwebsite.com/" frameborder="0;" scrolling="no"; style="width:100%; height:100%;" >
  6. </iframe>
  7. </div>
  8. </body>
  9. </html>
  10.  
  11. ______________________________________________________________________________________________________
  12.  
  13. Another one i've tried:
  14. <html>
  15. <style type="text/css">
  16. html,body{
  17. width:100%;
  18. height:100%;
  19. margin:0px;
  20. padding:0px;
  21. }
  22. </style>
  23. <body>
  24.  
  25. <div style="width:100%; height:100%; background-color:transparent;">
  26. <iframe src="http://www.randomwebsite.com" frameborder="0;" scrolling="no"; style="width:100%; height:100%;" >
  27. </iframe>
  28. </div>
  29. </body>
  30. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement