【发布时间】:2012-02-05 11:13:24
【问题描述】:
这是我的例子:
行高不适用于流体 div。我目前拥有的代码基于 line-height 但框的大小会发生变化。 那么我怎样才能让链接(内容)始终位于正中间?
我想确保此 DIV 中的内容始终从顶部和侧面居中。垂直和水平居中。
当前代码:(注意样式标签为空白,因为这是动态填充的)
<style type="text/css">
.box{
width:468px; /* php changes this sometimes */
height:60px; /* php changes this sometimes */
background:#eee;
text-align:
center;
border:
1px solid rgb(177, 172, 171);
line-height: 61px;
}
</style>
<div style="" class="box" id="">
<a style="color:#333;font-weight:bold" href="claimPrize();">Winner!</a>
</div>
【问题讨论】:
标签: html css xhtml margin fluid-layout