当用户第一次访问网站时,我试图将大型背景图像拉伸到浏览器窗口的大小。从这里他们向下浏览网站的其余部分,但无论浏览器窗口的大小如何,您都看不到它而不滚动(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;
}