iFrame使用主机的背景图像

问题描述 投票:0回答:2

我有一个页面,上面有几个iframe,它们会自动刷新以显示某些数据。问题在于背景图片也在iframe背景上设置了自己。 iframe页面链接到与主页相同的CSS文件,但是该页面使用不同的ID和类,但是iframe中仍显示背景图片。在主页上,我有一个CSS文件,说明背景图像文件。

body {
background-image: url (background1.jpg);
}

iFrame看起来像这样:

<iframe src="File.php" width="100px" height="100px" frameborder="0"></frame>

我已经尝试过allowtransparency属性,但是没有任何作用。我已经尝试在CSS中为iFrame页面本身指定背景颜色,但它什么也不做。正文标签设置网址图片时,是否无法更改iFrame页面的背景?

html css iframe background-color
2个回答
1
投票

在iframe中添加属性

style="background-color:SET YOUR COLOR"

1
投票

相对于iframe使用位置

position:relative; z-index:99;
© www.soinside.com 2019 - 2024. All rights reserved.