Hello, I can't understand one thing. I have a big block, here is it's css:
#content_part1
{
margin: 0; padding: 0;
width: 1024px;
min-height: 544px;
background-image: url(../images/top.gif);
border: 1px solid green;
}
And another block in it:
#content
{
width: 942px;
margin-left: 41px;
position: absolute;
margin-top: 5px;
padding: 0;
height: 100%;
clear: both;
border: 1px solid red;
}
<div id="content_part1">
<div id="content"></div>
</div>
But, when content-block changes height, content_part1 doesn't. Why? Here is example site: deleted