-1
A
回答
1
這有點亂,但你在找這樣的東西嗎?
HTML:
<div class="button-panel">
<div class="row button-row">
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 1">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 2">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 3">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 4">
</div>
</div>
<div class="row button-row">
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 5">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 6">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 7">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 8">
</div>
</div>
<div class="row button-row">
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 9">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 10">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 11">
</div>
<div class="col-xs-3 button-container">
<input type="button" class="btn btn-primary btn-responsive" value="Button 12">
</div>
</div>
</div>
CSS:
.button-panel {
height: 100vh;
}
.button-row {
height: calc(100%/3);
}
.button-container {
padding: 0;
height: 100%;
}
.btn-responsive {
width: 100%;
height: 100%;
}
相關問題
- 1. jssor更改縮略圖寬度高度
- 2. tkinter按鈕的高度和寬度
- 3. 按鈕寬度,高度
- 4. 修復帖子縮略圖的寬度和高度
- 5. 按鈕寬度和高度不正確
- 6. 使Mobiscroll高度和寬度響應
- 7. Bootstrap 3 |響應列寬度和高度
- 8. 獲取圖像的高度和寬度,如果它的響應
- 9. 設置按鈕的高度與寬度
- 10. 在高度和寬度內的響應式圖像<figure>
- 11. 如何讓我的圖片響應寬度和高度?
- 12. Svg高度可調的響應寬度
- 13. 無收縮的寬度和高度
- 14. 使用縮略圖,我可以使相同的高度和寬度的縮略圖無論圖像的大小
- 15. equals方法按鈕的縮略圖的高度
- 16. 一行縮略圖高度
- 17. 列表視圖重複按鈕高度和寬度自定義
- 18. 具有固定高度縮略圖的響應式jssor
- 19. 圖像自動高度縮放寬度
- 20. 響應式縮略圖網格調整寬度
- 21. Android:按比例縮放按鈕的寬度與屏幕寬度
- 22. 佈局寬度和高度被忽略
- 23. CGAffineTransform僅縮放寬度和高度
- 24. 已解決作物在不同寬度和高度的中心縮略圖
- 25. jquery使div完全寬度和高度的頁面和響應
- 26. 圖像按照寬度和高度在圖像按鈕中拉伸
- 27. td忽略寬度但高度很高
- 28. 100%的高度和寬度導致我的圖像「縮放」
- 29. 如何設置相同的寬度和高度的按鈕
- 30. 如何修改GWT的ActionCell中的按鈕寬度和高度
你看着引導媒體查詢:http://getbootstrap.com/css/#grid -media-queries ??? – Ryan
你能告訴我們你們中的一個人嗎? 按鈕是圖標,文字還是圖標文字? 如果是文本,你是否想讓文字變大? –
我想做3行4列。在這個單元格內,evry會有相同大小的按鈕(矩形按鈕)。按照按鈕的分辨率大小將會改變。 –