我有两个div。包装器 div ( divider_header
) 是相对定位的,并且它的子元素 ( divider_txt
) 是绝对定位的,左侧有一个浮点数。
<div class="divider_header">
<div class="divider_txt">Friend Requests</div>
</div>
我想知道如何在divider_txt
包装器内水平居中文本?
CSS(不起作用):
.divider_header {
display: table;
position: relative;
border-bottom: 1px solid #666;
padding: 1px 0;
width: 418px;
margin: 0 auto;
float: left;
}
.divider_txt {
display: table-cell;
text-align: center;
font-size: 13px;
font-family: "Open Sans Condensed", Arial, sans-serif !important;
vertical-align: middle;
position: absolute;
z-index: 2;
background-color: #121219;
}