我正在尝试在屏幕上居中放置我的内容。问题是当我top
在50%
该框设置时不会 100% 居中在页面上。这就像顶部的 60% 和底部的 40%。
这是HTML代码:
<div class="content">
test
</div>
这是样式表:
body, html {
color: #eaeaea;
font-family: Arial;
font-size: 12px;
margin: 0;
padding: 0;
width: 100%;
}
.content {
background-color: #000000;
padding: 10px 15px;
position: fixed;
top: 50%;
width: 100%;
}
演示:http: //jsfiddle.net/edgren/cceSw/
我错过了什么?
提前致谢。