我正在使用col-xs-offset-1
将每个列置于xs屏幕上的块样式布局中。但是,在大屏幕上,我使用col-lg-offset-3
来显示行内嵌并在屏幕上居中。通过这样做,似乎col-xs-offset-1
覆盖了col-lg布局,所以现在大屏幕上的列不再居中(参见图片链接)。是什么造成的?我怎么能双管齐下? badges not centered
<div class="container-fluid">
<div class="row">
<div class="list-group">
<div class="col-xs-offset-1 col-xs-10 col-sm-offset-3 col-sm-2 col-md-offset-3 col-md-2 col-lg-offset-3 col-lg-2">
<a href="http://hyperurl.co/cplq6c" class="list-group-item" target="_blank">
<i class="fa fa-apple fa-2x" aria-hidden="true" style="color: whitesmoke;"></i>itunes
</a>
</div>
<div class="col-xs-offset-1 col-xs-10 col-sm-2 col-md-2 col-lg-2">
<a href="http://hyperurl.co/1qcfl6" class="list-group-item" target="_blank">
<i class="fa fa-amazon fa-2x" aria-hidden="true" style="color: #ff9900;"></i>amazon
</a>
</div>
<div class="col-xs-offset-1 col-xs-10 col-sm-2 col-md-2 col-lg-2">
<a href="http://hyperurl.co/mb95g4" class="list-group-item" target="_blank">
<i class="fa fa-google fa-2x" aria-hidden="true" style="color: #34a853;"></i>google play
</a>
</div>
</div>
</div>
</div>
答案 0 :(得分:0)
Bootstrap偏移量从小到大适用,因此col-xs-offset-1将影响大于xs的列。您可以添加col-sm-offset-0以防止偏移影响较大的列。