解决IE8 iframe透明的问题

要使 ie8 的 iframe 的透明,需要设置两点:

设置 iframe 的 allowTransparency 属性值为 true:

<iframe allowtransparency="true" src="test1.html" width="200" height="126"></iframe>
设置 iframe 里的页面的 body 的样式背景色为透明:

<body style="background-color:transparent">
frameborder="no"——设置无边框

猜你喜欢

转载自www.cnblogs.com/Queeny-LXY/p/9455681.html