我是BootStrap的新手,因此瞭解繩索並瞭解它。我試圖在列網格中實現100%的高度,以便覆蓋頁面的100%高度。現在沒有高度設置。當我嘗試以像素或%爲單位指定col-lg-9和col-lg-3的高度時,不會發生任何更改。不知道可能是什麼問題。 這裏是我使用在Twitter中將100%高度設置爲列Bootstrap
<body>
<div class="row">
"Top bar"
</div>
<div class="container">
<div class="row">
<div class="col-lg-3">
side bar
</div>
<div class="col-lg-9">
side bar
</div>
</div>
的基本結構和這裏是每個項目的CSS
@media (min-width: 1200px)
.container {
max-width: 1170px;
}
.row {
margin-bottom: 20px;
}
.col-lg-9 {
width: 75%;
padding: 10px 20px;
border-radius: 0 10px 10px 0;
-moz-border-radius: 0 10px 10px 0;
-webkit-border-radius: 0 10px 10px 0;
-o-border-radius: 0 10px 10px 0;
border: 0 none;
padding-top: 3%;
min-height: 90%;
}
.col-lg-3 {
width: 25%;
background-color: #192D38;
color: #88A7A9;
min-height: 90%;
}
嘗試設置的父元素的高度以及HTML和身體對於初學者 – Danield