加载时更改iframe的背景

时间:2010-04-26 14:30:14

标签: html css iframe

  

可能重复:
  Can I change or control the color of the IFRAME area before the content loads?

我在div中有一个iframe,背景颜色。加载页面时,iframe占位符变为白色。有没有办法在加载iframe时更改背景?

提前谢谢。

1 个答案:

答案 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>
  • 巴里