我有一個關於如何設置我的基本流體佈局的快速問題。我有一個40px高的,頂部100%寬的標題欄,這看起來很棒。CSS流體佈局?
然後我有一個#left和#right div,分別浮動。這看起來很酷。他們都有高度100%,這很好,但問題是頁面然後滾動40px,因爲從標題欄有40px ...如果我使用流體佈局的標題,然後內容框的它看起來很糟糕在一個微小的或非常大的分辨率。
任何想法?
這裏是我的CSS
body
{
background: #ebebeb;
margin: 0;
padding: 0;
min-width: 750px;
max-width: 1500px;
}
#wrap
{
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
#header
{
background: #414141;
height: 40px;
width: 100%;
}
#sidebar
{
width: 30%;
background: #ebebeb;
height: 100%;
float: left;
}
#rightcontent
{
width: 70%;
background: #fff;
height: 100%;
float: right;
}
#footer
{
width: 100%;
background: #414141;
height: 40px;
clear: both;
}
這裏是我的html頁面:
<body>
<div id="wrap">
<div id="header">
head
</div>
<div id="sidebar">
side
</div>
<div id="rightcontent">
right
</div>
<div id="footer">
footer
</div>
</div>
</body>
是否幫助:)
嘿,很好的修復!雖然我最終沒有使用它,因爲我使用javascript來保持這一點,並在用戶調整窗口大小等一些其他事情透視,等等...我知道這可能會導致與非JS瀏覽器的問題,但其餘的網絡應用程序是非常重的JS,所以我有非js瀏覽器問題的地方alreay :-) – tarnfeld 2010-01-17 13:42:22