私は次のものを持っています:
HTML
<body>
<div id="header"></div>
<div id="logo"></div>
<div id="container">
<h1>Welcome message</h1>
text text text text text text text text text text text text text text
</div>
</body>
CSS
html{
background-color: #000000;
color: white;
}
html,body, img{
margin: 0;
padding: 0;
border: 0;
}
#header{
position: absolute;
left: 0;
top: 0;
background-color: yellow;
width: 100%;
height: 537px;
z-index: -1;
}
div#logo{
width: 385px;
height: 141px;
background: white;
margin-left: auto;
margin-right: auto;
}
#container{
width: 964px;
margin-left: auto;
margin-right: auto;
min-height: 100%;
height: 100%;
background-color: #000000;
padding-left: 6px;
padding-right: 6px;
}
一番下まで伸ばしたいdiv#container
のですが、そうではありません。