这个答案不再是最好的答案......请参阅下面的 flexbox 答案!
要使其完全居中(如大卫的回答中所述),您需要添加一个负的上边距。如果您知道(或强制)只有一行文本,您可以使用:
margin-top: -0.5em;
例如:
http://jsfiddle.net/45MHk/623/
//CSS:
html, body, div {
height: 100%;
}
#parent
{
position:relative;
border: 1px solid black;
}
#child
{
position: absolute;
top: 50%;
/* adjust top up half the height of a single line */
margin-top: -0.5em;
/* force content to always be a single line */
overflow: hidden;
white-space: nowrap;
width: 100%;
text-overflow: ellipsis;
}
//HTML:
<div id="parent">
<div id="child">Text that is suppose to be centered</div>
</div>
最初接受的答案不会垂直居中在文本的中间(它基于文本的顶部居中)。所以,如果你的父母不是很高,它看起来根本不会居中,例如:
http://jsfiddle.net/45MHk/
//CSS:
#parent
{
position:relative;
height: 3em;
border: 1px solid black;
}
#child
{
position: absolute;
top: 50%;
}
//HTML:
<div id="parent">
<div id="child">Text that is suppose to be centered</div>
</div>