私はここにいくつかのアライメントの問題をクリーンアップしようとしています...センターのコンテンツ、彼らはページの中央になるように
することができますように、下矢印があります中心に置かれていなくても...
私はアイテムが矢印の左側に浮かんでいますが、その幅は矢印の右側に浮いています。
結果として矢印は中心から外れている...ここで
はフィドル
http://jsfiddle.net/6jSFY/292/
私のコード
/*bottom toolbar*/
.bottom-toolbar {
height: 60px;
background: #292B2C;
position: fixed;
bottom: 0;
width: 100%;
color: #ffffff;
padding-left: 15px;
padding-right: 15px;
z-index: 2;
}
.toolbar-item {
display: inline-block;
line-height: 60px;
padding:0 20px 0 20px ;
transition: background 0.2s ease 0s;
}
.toolbar-item:hover {
cursor: pointer;
background: #747677;
bottom: 10px;
}
.toolbar-group {
display: inline-block;
margin-right: 30px;
border-right: 1px solid #393B3C;
}
<!-- footer toolbar -->
<div class="bottom-toolbar text-center">
<div class="pull-left">
<span class="toolbar-item">Slide 1/3</span>
</div>
<div class="toolbar-item">
<i class="fa fa-arrow-left"></i>
</div>
<div class="toolbar-item">
<i class="fa fa-arrow-right"></i>
</div>
<div class="pull-right">
<div class="toolbar-group">
<div class="toolbar-item">
<i class="fa fa-check text-success"></i>
</div>
<div class="toolbar-item">
<i class="fa fa-times text-danger"></i>
</div>
</div>
<div class="toolbar-item">
00:00
</div>
</div>
</div>
<!-- end footer toolbar -->
です
質問:
彼らは死に関係なく、隣接するアイテムの幅のページにありますように、矢印を中心にする方法はありますか?
おやっ! –
それほどマッシュアップではなく、tnxです。 '.center'ブロックの前に' .pull-right'が入ります – disstruct