У меня проблема. У меня есть html-код:
<div id="main_content" >
    <div id="container">
    </div>
</div>
css вот так:
#main_content {
    top: 160px;
    left: 160px;
    width: 800px;
    min-height: 500px;
    height: auto;
    background-color: #2185C5;
    position: relative;
}
#container {
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}
Я полагаю, что контейнер # будет центрирован в #main_content. Однако это не так. Я просто хочу узнать причину и как ее сосредоточить.