1

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

1 回答 1

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%;
    }
于 2012-05-13T13:02:18.940 回答