我的問題是,我需要有兩列相同的高度,但不是100%的寬度。整個事情都以一個全屏幕BG圖像爲中心。2列布局,100%的高度,但不是100%的寬度
我發現很多針對100%寬度的着名2列問題的解決方案,但如果寬度是固定的,則無法解決。
我知道Matthew James Taylor Solution,但它僅適用於100%寬度佈局。
因此,這裏是我從平面設計師
-------------------------------------------
|sub menu| content |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
---------|--------------------------------|
| footer |
|--------------------------------|
所以子菜單中有一個固定的寬度和內容&頁腳中的最大寬度得到了佈局。
有時子菜單較高,有時候是內容區域。無論如何,他們必須是相同的高度(與背景)。
我得到的最接近(位置絕對使工作):
#main-holder {
position: relative;
max-width: 944px;
margin:0 auto;
text-align:left;
padding-top: 140px;
z-index: 10;
height: 100%;
overflow: hidden;
}
#cont-holder{
position: absolute;
display: block;
float: left;
max-width: 676px;
min-height: 100%;
margin-left: 134px;
background-color: #ffffff;
}
#content{
position: relative;
overflow: hidden;
margin-right: 10px;
}
#sub-holder{
position: relative;
background-color: none;
float: left;
width: 134px;
margin-right: -134px;
overflow: hidden;
}
#subs {
background: #000000;
padding:10px;
overflow: hidden;
clear: both;
height: 100%;
}
,這裏的HTML
<div id="main-holder">
<div id="sub-holder">
<div id="subs">
sub menu
</div>
</div>
<div id="cont-holder">
<div id="content">
content
</div>
</div>
<footer></footer>
</div>
完美的作品時,子菜單不再那麼內容。但是如果子菜單短於內容的話。
高興的任何幫助:-)
因此,要回答我的問題我自己.... 我不能」噸找到一個CSS解決方案,這將適合....和時間正在運行.... jQuery必須幫助我出: http://web.enavu.com/tutorials/equal-column-height-with-jquery/ 完美的作品! – user1915498