【发布时间】:2013-11-23 18:11:21
【问题描述】:
我正在基于 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%;
}
提前谢谢你。 迪玛
【问题讨论】:
标签: css image internet-explorer background buddypress