zl程序教程

您现在的位置是:首页 >  前端

当前栏目

如何设置网页的背景为透明

网页 如何 设置 背景 透明
2023-06-13 09:13:45 时间
可以把iframe中的网页的背景设置为透明
1、a.htm
<iframe src="b.htm" allowtransparency="true"></iframe>


2、b.htm
body {
       background-color: transparent;
}