我正在构建自己的子主题,基于 BuddyPress 默认主题。我需要有一个拉伸 100% 宽度/高度的背景图像。它在 Chrome 和 Firefox 中运行良好,但在最新版本的 IE 中,图像以原始大小位于中心。不会发生拉伸。这是我正在使用的 CSS,它只是父主题(BP 默认主题)的扩充:
body {
background-color: #000000;
background-image: url(images/DSC09005cc.jpg);
background-repeat: no-repeat;
background-position: center top;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #555;
font-size: 12px;
font-family: Arial, Tahoma, Verdana, sans-serif;
line-height: 170%;
max-width: 1250px;
margin: 0 auto;
width: 95%;
}
先感谢您。迪玛