儿童div在父母div之外扩展

时间:2014-04-11 17:09:10

标签: html css

嗨,谢谢你的帮助, 一些我的孩子div如何在我的父div之外打破

enter image description here

的CSS:

        #itembody{
        min-height: 120%;
        width: 75%;
        margin-left: auto;
        margin-right: auto;
        background-color: white;
        box-shadow: 0px 5px 15px 10px #888888;
//child div
    #itemdiv{
        font-family: century gothic;
        font-weight: bold;
        padding: 10px;
        margin: 10px;
        border-style: outset;
        border-width: 5px;
        border-color: gray;
    }

如何修复它以使我的父div与我的子div具有相同的高度。

1 个答案:

答案 0 :(得分:0)

看起来您的2个子元素已浮动。您必须将clearfix应用于父div。

您可以在此找到明确修复的示例和详细说明: http://code-tricks.com/css-clearfix-methods/