当用户第一次访问网站时,我正在尝试将大的背景图像拉伸到浏览器窗口的大小。从这里他们向下浏览网站的其余部分,但是如果不滚动浏览器窗口的大小,你就不会看到它(http://whiteboard.is就是一个很好的例子)。
我正在使用下面的代码,当它水平拉伸时,它不会垂直延伸超过最小高度。有什么想法吗?
HTML
<body>
<section id="first-section">
</section>
</body>
CSS
body, html {
font-family: Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
height: 100%;
}
#first-section {
background: url(1.jpg) no-repeat center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-width: 1024px;
min-height: 768px;
}
答案 0 :(得分:2)
也许你可以写height:100%
。
#first-section {
background: url(1.jpg) no-repeat center center;
background-attachment: fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
min-width: 1024px;
min-height: 768px;
height:100%;
}