Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <iframe transparency=true ...
  2.  
  3. Column 31: there is no attribute "allowtransparency"
  4.  
  5. .iframe-trans-fix{
  6. opacity: 0;
  7. filter:alpha(opacity=0);
  8. }
  9.  
  10. <html>
  11. <body>
  12. <iframe src="source.html"
  13. allowTransparency="true"
  14. style="background-color:lightgreen;"
  15. width="400" height="200">
  16. </iframe>
  17. </body>
  18. </html>
  19.  
  20. <html>
  21. <body>
  22. <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin gravida, magna
  23. id bibendum sollicitudin, tellus tortor consequat enim, et mollis mauris
  24. augue et dui. </p>
  25. </body>
  26. </html>
  27.  
  28. iframe {
  29. background-color: transparent;
  30. }
  31.  
  32. <!--[if lt IE 9]><script> $(".classname").attr("allowTransparency", "true"); </script><![endif]-->
  33.  
  34. iframe.transparent {
  35. background-color: #FFF; /*this gives a background color for browsers that can't do RGBA color, like internet explorer*/
  36. background-color: rgba(255,255,255,0.5);
  37. }
  38.  
  39. opacity: 0.25; /* all modern browsers */
  40. filter: alpha(opacity=25) /* IE */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement