こんにちは、コンテナ内のコンテンツを正しく中央揃えにしたいのですが、これを行う方法がわかりません。私は試しtext-align : center
ました。
これどうやってするの ?
HTML
<div id="Contacts" data-bind="foreach: viewModel.contacts()">
<div class="title">
<div class="container">
<small> <span class="red"> NEW CONTACT</span> </small>
<a href="#" data-bind="text: $data.Title()"></a> <br>
<a href="#" data-bind="text: $data.Title()"></a> <br>
</div>
</div>
</div>
CSS
.container {
width: 940px;
margin-left: auto;
margin-right: auto;
zoom: 1;
}
.title {
width: 540px;
height : 30px;
margin-bottom: 10px;
background-color: #F9F7F7;
border: 1px solid #e4e4e4;
position: absolute;
}
センタリングなし
中心のバージョン (概算) 私が望むもの: