可能重复:
Can I change or control the color of the IFRAME area before the content loads?
我在div中有一个iframe,背景颜色。加载页面时,iframe占位符变为白色。有没有办法在加载iframe时更改背景?
提前谢谢。
答案 0 :(得分:0)
也许像
<iframe src="http://www.google.com/" width="500" height="400" style="background-color: red;"></iframe>
会工作吗?
你也可以给iFrame一个Class或ID并给它CSS样式。
对于图片:
<iframe src="http://www.google.com/" width="500" height="400" style="background-image: url('http://www.google.co.uk/intl/en_uk/images/logo.gif');"></iframe>