html – iframe背景图片

前端之家收集整理的这篇文章主要介绍了html – iframe背景图片前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我的页面上有一个iframe.我在其上插入了背景图片.但它没有显示图像.这是我的代码.
<iframe scrolling="auto" allowtransparency="true" name="main" style="width:100%;height:90%" style="background-image:url(img/bg2.jpg)"> </iframe>

解决方法

试试这个:
<iframe scrolling="auto" allowtransparency="true" name="main" style="width:100%;height:90%;background-image:url(img/bg2.jpg)"> </iframe>

如果它不起作用将背景图像移动到iframe的容器.

原文链接:https://www.f2er.com/html/226952.html

猜你在找的HTML相关文章