Please check out this CSS:
body {
margin: 50px 0px; padding: 0px;
}
.one {
background: #151515;
height: 700px;
width: 900px;
margin: 0px auto;
padding: 0px 0px 0px 0px;
}
#two {
background: #e6e6e6;
height: 140px;
width: 900px;
}
I want to use margin-top to move the grey box in the CSS above.
I want the grey box to be in the middle of the black box but I have been told margin-top does not go well with internet explorer.
What do I use instead?