我給自己定的相對位置爲我行,然後我試圖對準我的社交按鈕右下角,但失敗了;(爲什麼我不能在引導列中對齊內容?
我還設置絕對位置爲我的社交按鈕類,它不似乎正確對齊。爲什麼會這樣呢?
HTML
<div class="container">
<div class="jumbotron">
<div class="row fixed-height">
<div class="col-xs-4">
<button class="btn btn-primary btn-sm">
<span class="glyphicon glyphicon-ok"></span>
Some button!
</button>
</div>
<div class="col-xs-8">
<div class="social-buttons">
<div class="btn-group-xs">
<button class="btn btn-default">
<span class="glyphicon glyphicon-thumbs-up"></span>
</button>
<button class="btn btn-default">
<span class="glyphicon glyphicon-thumbs-down"></span>
</button>
</div>
</div>
</div>
</div>
</div>
</div>
CSS
.jumbotron {
margin: 10px;
}
.row {
margin: 8px 0;
border: solid;
}
.fixed-height {
height: 100%;
}
.social-buttons{
position: absolute;
bottom: 0;
right: 0;
}
正確的,因爲你有一個div你不能保持一致的是跨越8列。 –
@ChristopherMarshall那我該怎麼辦? –
http://jsfiddle.net/cpveg8Lo/1/將按鈕移動到'8' col類中,並使用align-right的css屬性。不知道這是否適用於您的實施。 –