の背景として設定された画像がありdiv
ます。IE10 では正常にロードされますが、クロムでは半分しかロードされないのはなぜですか? ページを更新した後、完全にロードされます。
これが私のCSSコードです。完全に最適化されているかどうかはわかりませんが、IE10 で動作します。唯一の問題は、背景がクロムをロードしていないことです。
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;
}