CSS3 很新,我有一个 DIV 没有随着背景图像变大(高度)而改变高度的问题。DIV 应该随着背景图像的扩展而扩展。在这个 DIV 之后会有一个固定高度的页脚。
网页: http ://www.cre.fi/kalustekeskus/
html, body {
height: 100%;
width: 100%;
padding: 0;
margin: 0;
}
#full-screen-background-image {
background-image: url(../img/kalustekeskus_bg.jpg);
background-size: cover;
background-repeat: no-repeat;
min-width: 1024px;
width: 100%;
min-height: 90%;
position: fixed;
overflow: hidden;
border: 1px solid red;
}
<!DOCTYPE html>
<html>
<head>
<title>Kalustekeskus</title>
<link href="css/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="full-screen-background-image"></div>
</body>
</html>
有什么聪明的方法可以做到这一点吗?
谢谢!