我有一个图像设置为背景div
。它在 IE10 中加载良好,但为什么它只在 chrome 中加载一半?刷新页面后它会完全加载。
这是我的 CSS 代码。我不确定它是否完美优化,但它适用于 IE10。唯一的问题是背景没有加载 chrome。
html, body {
background-color:black;
height:100%;
width:100%;
margin:0;
padding:0;
text-align:center;
color:white;
font-family:"Century Gothic",Times new roman, Georgia, Serif;
}
#container {
min-height:100%;
height:auto;
height:100%;
}
#img {
margin:0 auto;
width:800px;
height:700px;
background-image:url("../images/comingsoon.jpg");
background-repeat:no-repeat;
background-attachment:fixed;
background-position:center;
padding-bottom:50px;
}
#text {
padding-bottom:100px;
}
#footer {
position:relative;
bottom:0;
width:99%;
padding-bottom:1px;
}
.link a:hover, a:visited, a:link, a:active{
text-decoration:none;
color:white;
}
img {
border:0;
}