I have an inner div inside a containing div.
HTML
<div id="container">
<div id="inner"></div>
</div>
CSS
#container {
width: 100px;
height: 100px;
background-color: red;
}
#inner {
margin: 30px;
width: 40px;
height: 40px;
background-color: black;
}
Fiddle
I expect this to make a small black box centered vertically and horizontally in a bigger red box. Instead I get a black box stuck to the top of the red box, and the red box has the margin-top.
Can someone explain what CSS thinks it is doing here?
