背景颜色在Mozilla和IE

时间:2015-04-24 20:25:09

标签: html css mozilla

我在设计问题上请帮我找一个解决方案。 here is my page 这在Google Chrome中工作正常,但标题中的background-color: transparent;无法在Mozilla和IE上运行,并且在我的标题上显示白色背景。

我试过给position:static,但不适合我。 请帮帮我。

2 个答案:

答案 0 :(得分:1)

overflow: hidden添加到您的#header_main课程中,可以解决问题。

所以..它看起来像这样:

#header_main{
z-index: 1;
border-top: 3px solid #FFF;
background: url("http://australian.webeteerprojects.com/wp-content/uploads/2015/04/header-back.png") no-repeat scroll center top / 100% 100%       transparent;
overflow: hidden;
}

答案 1 :(得分:-3)

另一种解决方案可能是伪造背景并创建1px透明gif:

background:url(transparent.gif);