如果我有一个设定数量的列的引导网格(可以是3或4或6列),我可以以任何方式使用CSS来确保空列位于左侧而不是右侧或是否需要在左侧列中添加空条目吗?
因此,如果列数为4(col-xs-3
)且我有5个条目,我希望第一行为value|value|value|value
,然后第二行为empty|empty|empty|value
这可能吗?
答案 0 :(得分:6)
如果您不想在空列中存根,可以通过偏移将整个div推向右侧。只需使用.col-md-offset-9
将其推向右侧:
<div class="col-md-3 col-md-offset-9">All of the way on the right.</div>