我尝试使用在列中显示多个按钮
.columnized {
-webkit-column-count: 3;
-moz-column-count: 3;
column-count: 3;
}
和标记
<div class="columnized col-md-6">
<p>
<button type="button" class="btn btn-default btn-xs">text</button>
</p>
<!-- ... more buttons ... -->
</div>
但整个 div 显示为一条线,所有p
s 看起来都向右浮动。
奇怪的是,这适用于Firefox 28
,甚至 Internet Explorer 10
而不适用于Chrome 33
.