IFrame透明背景

/* in the iframe element */
<iframe src="content.html" allowTransparency="true">
</iframe>

/* in the iframe docuement, in this case content.html */
body {
    background-color:transparent;    
}

原文地址:https://www.cnblogs.com/cly84920/p/4426782.html