我一直在試圖完成這個過去兩天。有人幫忙。我試圖把這個頁面分成兩半。左側100%的高度和右側只是滾動更多的內容。爲什麼右側在右側崩潰?如何解決Bootstrap 3中的這個謎題?這裏是我的代碼:Bootstrap 3並排兩個50%寬度的div
<section id="main-body" class="container-fixed main-body">
<div class="row text-center">
<div class="col-md-6 left-side-home-outer">
Left Side Content
</div>
<div class="col-md-6 right-side-home">
Right Side Content
</div>
</div>
</section>
.left-side-home-outer {
border: 1px solid blue;
height: 100%;
position: fixed;
font-family: "Roboto";
font-weight: 800;
}
.right-side-home-outer {
border: 1px solid blue;
height: 100%;
width: 50%;
overflow: auto;
font-family: "Roboto";
font-weight: 800;
}
如果可能的話,如果我想添加一個固定在左側底部的頁腳,那麼CSS會是什麼? 非常感謝。
爲什麼寬度50%在右側家庭外? – scaisEdge
爲什麼固定在左側家庭外,也是你的html類是「右側家」..你的CSS顯示「。右側家庭外」 –
@Maulzal我實際上正在研究更多複雜的頁面,只是剝離內部的div,這就是爲什麼類名不加起來。對於那個很抱歉。 –