我有一個非常簡單的佈局,帶有2個DIVS:一個固定寬度的左側欄和一個右側區域,佔據剩餘寬度的100%。兩者都是100%的高度,如果高度高於窗口高度,我希望正確的項目具有垂直滾動條。「100%」的DIV寬度在頁面右端滾動
我的當前代碼佔用了整個瀏覽器窗口,但右側的區域從右側的瀏覽器可查看區域滾動,並且從來沒有可見的垂直滾動條。
HTML:
<body>
<form id="Form2" runat="server">
<div class="page">
<div class="clear hideSkiplink">
Left side stuff goes here....
</div>
<div class="main">
Right size stuff goes here....
</div>
</div>
</form>
</body>
CSS:
div.hideSkiplink
{
padding:20px;
background-color:#990000;
position:fixed;
top:0px;
left:0px;
width:249px;
height:100%;
}
div.main
{
padding: 10px;
margin: 0px;
background-color: #000000;
color: #ffffff;
position: fixed;
top: 0px;
left: 250px;
width: 100%;
height: 100%;
}
我主要工作,感謝您的意見!我仍然希望能夠有機會獲得DIV禪師的幫助,讓我走出去......行爲有時候會很奇怪! – pearcewg 2011-06-08 22:18:51