我正在研究具有固定邊欄和麪包屑標題的網頁設計,以及佔用剩餘空間的可滾動內容部分。下面是我設想最終的結果看起來像:使用固定邊欄和標題的CSS 100%佈局
衝突是,我無法弄清楚如何使不討厭的容器<div>
S或哈克CSS這項工作。我喜歡語義HTML(HTML5,針對這個特定的項目),所以我並不想讓樣式元素脫離標記。
邊欄將有兩個固定的寬度(展開和摺疊),並且標題將始終具有固定的高度。
這是(實際上)我怎麼想的標記看:
<body>
<aside>
<!-- sidebar content -->
<h1>My Site</h1>
</aside>
<section>
<nav>
<!-- breadcrumbs -->
<a href="#home">Home</a>
<a href="#area">Area</a>
<a href="#category">Category</a>
<a href="#">Item</a>
</nav>
<article>
<!-- page content -->
<h2>Item Title</h2>
<p>
Item Content
</p>
</article>
</section>
</body>
有人可以幫助我彌補這方面的CSS工作?
編輯:我的CSS迄今:
html {
font-family: "Segoe UI", sans-serif;
font-size: 9pt;
height: 100%;
}
html body {
margin: 0px;
height: 100%;
padding: 0px;
}
html body aside {
background-color: rgb(32, 80, 128);
float: left;
height: 100%;
width: 256px;
}
html body section {
background-color: rgb(16, 40, 64);
height: 100%;
margin-left: 256px;
}
html body section nav {
background-color: rgb(242, 242, 242);
height: 32px;
}
html body section article {
background-color: rgb(255, 255, 255);
margin: 0px 32px 32px 32px;
}
到目前爲止你有什麼CSS? – TNC 2011-02-17 01:34:42
我修改了我的帖子。 – 2011-02-17 01:42:32
`html body {` - 你預計在``標籤外的某個地方有`
`標籤嗎? – drudge 2011-02-18 20:48:10