I have 2 divs
<div id=number1><div id=number2></div></div>
为什么
#number1 {
background:red;
}
#number2 {
background:blue;
height: 200px;
margin: 10px;
}
不适用
#number1 {
background:red;
padding:10px;
}
#number2 {
background:blue;
height: 200px;
}
And in the first case I get white lines at the top & bottom, where it is suppose to be the red color of div 1? http://jsfiddle.net/ZbCNq/