如何使这个容器居中,使其从顶部、左侧和右侧居中?我已经尝试了下面的内容,但它不起作用。不知道我错过了什么:
HTML:
<div class="box">
<p>This is a sentence.</p>
</div>
CSS:
.box {
background-color: #444444;
color: #888888;
margin: 0 auto;
position: absolute;
width: 1000px;
height: 20px;
}