min-height
float:left
在我将属性设置为它的子 div后,它不适用于父div。
你可以帮帮我吗 。
<style type="text/css">
*{ margin: 0 auto; padding: 0; }
#wrapperd{
width : 500px;
border : 1px solid red;
min-height:200px;
}
#test {
border:2px solid blue;
width:600px;
float:left;
height:500px;
}
</style>
HTML 代码
<div id = "wrapperd"> <!-- Parent Div -->
<div id = "test"> </div> <!-- Child Div -->
</div>
演示链接:- http://jsfiddle.net/rushijogle/cFX68/2/
提前感谢:)