0
當達到最小邊距時,如何防止內容跳到邊欄下方?液體佈局中的最小邊距
<div id="wrapper">
<div id="sidebar"></div>
<div id="content"></div>
</div>
#wrapper {
width: 100%;
overflow:hidden;
}
#sidebar {
float:left;
width: 20%;
min-width:50px;
background-color:#ffb8e0;
}
#content {
float:left;
width:80%;
background-color:#fff7b8;
}
嘗試調整瀏覽器窗口,您會看到內容跳下來,相反,我希望它留彼此相鄰,儘管80%+ 50像素>包裝寬度,instad它應該溢出沒有跳下去。
在此先感謝!
謝謝!這對移動瀏覽器非常適用(這就是爲什麼最小保證金是相關的)。猜猜我現在必須閱讀媒體查詢。 – lowkey
很高興幫助。媒體查詢是構建響應式網站的方式。我已經構建了許多並學習了一切,從閱讀這裏只有這一頁http://css-tricks.com/css-media-queries/ – Vector
有一點要記住,確保媒體查詢低於標準的CSS你的CSS文件。否則,它將使用標準的CSS,因爲它最後調用。 – Vector