【发布时间】:2012-02-19 15:05:54
【问题描述】:
在我的网站http://aspspider.info/thesamy/GalleriesTest/MainPage/Main.aspx(免费托管测试)上,我有 2 张背景图片。在每个浏览器中都可以使用的主体和在 IE7、IE8 中无法使用的内容包装器。
我不明白为什么,如果正文的背景图片显示,为什么它在页面的不同区域不起作用?
这是该区域的 HTML 代码:
<div id="Content-wrapper">
<div id="GalleriesContent">
<iframe scrolling="no" id="iframeBoxID" frameborder="0" class="iframeBoxClass" name="iframeBox"
src="http://www.google.com"></iframe>
</div>
</div>
这里是css:
#Content-wrapper
{
/*background-image:url('../logo/blackBackGround2.png'); <-- tired that*/
background-image:url(../logo/blackBackGround2.png);
}
#GalleriesContent
{
background-color:transparent;
clear: both;
}
.iframeBoxClass
{
background-color:transparent;
border: 1px solid white;
width: 100%;
height: 550px;
}
【问题讨论】:
标签: html css internet-explorer