内容块最小高度

时间:2014-04-09 09:17:27

标签: html css

我有下一个情况atm。

enter image description here

左列=内容列,右列=附加。

请注意,内容列的高度取决于其中的内容。更多内容=>更多内容块高度。

我想设置此块的最小高度。看右栏。它剩下更高的高度。它不好(可用性,美观)。我想制作固定高度的左列。

我有下一个HTML代码:

<section>
    <div class='header'><h1><?=$PageHeader;?></h1></div>
    <div class='content'>
        <? include_once($_SERVER['DOCUMENT_ROOT'].$PageContent); ?>
    </div>
</section>

和css:

section {
    float: left;
    width: 770px;
    min-height: 500px;
}

section > div.content {
    /* many other options */
    height: 100%;
    width: 100%;
}

我设置了section(父级)的最小高度和div.content(子级)的100%高度,但没有任何反应。为什么呢?

0 个答案:

没有答案