我將我的頁面分爲3個不同的模塊:左側導航,中央圖像和社交側欄右側。以下是格式化此內容的CSS。當我調整窗口時,我遇到了麻煩;中間的圖像與左側的導航重疊,側邊欄被推到頁面的底部並與左側導航的結尾重疊。導航模塊/側欄已修復。如何在調整窗口大小時正確顯示內容?
我使用twitter bootstrap作爲基礎。
任何想法是什麼導致這種情況,以及如何解決這個問題?
CSS
div.sidebar{
width: 120px;
position:fixed;
top:12%;
left:2%;
overflow-y:auto;
height:100%;
}
HTML
<div class ="container-fluid">
<div class = "row-fluid">
<!-- left navigation div -->
<div class = "span1" style = "width:120px;">
<div class = "sidebar" >
#navigation
</div>
</div>
<!-- middle images div -->
<div class = "span8" style = "width: 900px;">
#lot of images
</div>
<!-- social sidebar -->
<div class = "span2" style = "margin-left: 10px; ">
#social module with images
</div>
</div>
</div>
謝謝你的回答。這是否意味着我必須更改twitter-bootstrap css並將span1的默認值更改爲我需要的寬度? – sharataka
不,看看我給的網站,也看看我的降價。你的跨度不得不加起來爲12。 – joshuahornby10