Css垂直居中文本的最佳方式

时间:2012-08-07 19:05:13

标签: css position

你好,有人可以帮助我定位css吗?我有这个布局http://jsfiddle.net/9r7NW/2/我希望TITLE垂直居中,但我不知道如何在其父级的高度不固定的情况下做到这一点

1 个答案:

答案 0 :(得分:0)

HTML

<div id="floater">
<div id="content">
    Content here
</div>
</div>

CSS

#floater    {float:left; height:50%; margin-bottom:-120px;}
#content    {clear:both; height:240px; position:relative;}

直接来自google

使用它。