-1
我試圖更改Bootstrap列表組中按鈕的順序。我目前有以下佈局(第一行)。多列項目組中的自舉項目順序
我試圖實現列第一的佈局,像這樣。
我目前正在重新排序列表中要做到這一點,但我不知道是否有解決問題的一個更好的方法。
https://www.bootply.com/pFSlgefurQ
我試圖更改Bootstrap列表組中按鈕的順序。我目前有以下佈局(第一行)。多列項目組中的自舉項目順序
我試圖實現列第一的佈局,像這樣。
我目前正在重新排序列表中要做到這一點,但我不知道是否有解決問題的一個更好的方法。
https://www.bootply.com/pFSlgefurQ
我不知道這是否是更優雅,但你總是可以添加到您的CSS:
.list-group {
-webkit-column-count: 3; /* Chrome, Safari, Opera */
-moz-column-count: 3; /* Firefox */
column-count: 3;
-webkit-column-gap: 0; /* Chrome, Safari, Opera */
-moz-column-gap: 0; /* Firefox */
column-gap: 0;
}
然後使每個引導塔COL-MD-12,像這樣:
<ul class="list-group">
<button class="btn col-md-12">Row1</button>
<button class="btn col-md-12">Row2</button>
<button class="btn col-md-12">Row3</button>
<button class="btn col-md-12">Row4</button>
<button class="btn col-md-12">Row5</button>
<button class="btn col-md-12">Row6</button>
</ul>
我得到了同樣的結果。 See here on bootply。
感謝您的回答!當按鈕數量不能完全被列數整除時,該解決方案似乎會產生奇怪的佈局。請參閱:https://www.bootply.com/UEC17uAIpe – user666
該死的你是對的,對不起,我發現列數確實經常讓事情變得混亂。 –