我有一个大图像用作background-image
页面。我想要的是图像的高度将被拉伸以填充页面的高度。它也应该居中。
background: black url("/image/background.jpg") no-repeat fixed center;
我有一个大图像用作background-image
页面。我想要的是图像的高度将被拉伸以填充页面的高度。它也应该居中。
background: black url("/image/background.jpg") no-repeat fixed center;
这是一篇很好的文章
http://css-tricks.com/perfect-full-page-background-image/
它的要点
body {
background: url(images/bg.jpg) no-repeat center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
将此添加到CSS
{
background: black url("/image/background.jpg") no-repeat fixed center;
height: 100%;
width:100%
}
我认为使用 div 将是获得所需效果的最简单方法。
<div id="background">
<img src="/image/background.jpg" class="stretch" alt="" />
</div>
<style>
#background {
background-color:#000000;
width: 100%;
height: 100%;
position: fixed;
left: 0px;
top: 0px;
z-index: -1;
}
.stretch {
width:100%;
height:100%;
}
</style>