我無法設置100%高度左側欄。我嘗試了所有可能的方法,在這裏我使用引導列。請幫助我。謝謝我在引導程序中面臨100%高度問題html
<body>
<div class="container-fluid main-template">
<div class="row">
<div class="col-sm-3 col-md-2 left_side">left_side</div>
<div class="col-sm-9 col-md-10 right_side">right_side</div>
</div>
</div>
<footer class="main-footer">
</body>
而且我已經爲html,body,main-template,row,left_side和right_side設置了高度100%。仍然不起作用。
html, body {
background-color:#ffffff;
min-height: 100%;
}
.main-template {
padding:0px;
height:100%;
}
.row {
height:100%;
}
.left_side, .right_side {
min-height:100%;
padding-right: 0px !important;
padding-left: 0px !important;
}
頁腳CSS:
.main-footer {
position:absolute;
bottom:0;
padding: 10px 20px 5px;
width:100%;
background-color:#33b3e3;
height:50px;
}
哪裏是你的CSS? –
使用'!important',這樣它就會覆蓋引導css –
我用過了!重要的還有,還沒有工作 –