发布时间:2025-12-10 20:07:12 浏览次数:1
怎么让iframe背景变透明「终于解决」<iframeid=”nnn”width=”100%”height=”100%”scrolling=”no”frameborder=”0″allowtransparency=”true”src=”http://”></iframe><style>body{background-color:transparent;}…
<iframe id=”nnn” width=”100%” height=”100%” scrolling=”no” frameborder=”0″ allowtransparency=”true” src=”http://”></iframe>
<style>
body{
background-color:transparent;
}
</style>
两步 1:iframe标签里 要有allowtransparency=”true”
2: iframe里面的body标签 样式设置为透明
body{
background-color:transparent;
}