我有一张图像用作背景,并试图让它 100% 填充屏幕的宽度。我已经应用了 background-size:100% 并且在 MZF 中它可以工作,但在 IE 中它不会再拉伸了。有谁知道解决这个问题?
这是HTML...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
</head>
<body class="body">
<!--Container to hold everything in the middle of page-->
<div class="container">
</div>
</body>
</html>
这是CSS..
.body
{
background-image: url(final2.gif);
background-size: 100%;
background-repeat:no-repeat;
background-color:#C2C2C2;
}
.container {
width: 1000px;
height: 1930px;
margin-top: 0px;
margin-right: auto;
margin-left: auto;
background-color:blue;
}