min-height not working for Parent Div

Monza

New Member
\[code\]min-height\[/code\] is not working for Parent Div after i set \[code\]float:left\[/code\] property to it's child div.could you help me . \[code\]<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>\[/code\]HTML code \[code\] <div id = "wrapperd"> <!-- Parent Div --> <div id = "test"> </div> <!-- Child Div --> </div>\[/code\]Demo Link :- http://jsfiddle.net/rushijogle/cFX68/2/Thanx in Advance :)
 
Back
Top