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