2011-04-22 29 views
1

enter image description hereCSS:表到的div somekind的

這就是我想要的......但我怎麼能建立這個使用CSS和DIV的? 我試過很多教程,但它並沒有進一步就比這

body { 
    font-family: Arial, Helvetica, sans-serif; 
    font-size: 13px; 
    background: #F0F0F0; 
} 

#wrapper { 
    padding: 1px; 
    margin: 0 auto; 
} 

#wrapper:after { 
    content: "."; 
    display: block; 
    clear: both; 
    height: 0; 
    overflow: hidden; 
} 

#left { 
    float: left; 
    width: 200px; 
    background: white; 
    padding: 5px; 

} 

#content { 
    margin-left: 215px; 
    background: white; 
    padding: 5px; 
    padding-left: 10px; 
} 
+0

所以整個創作應該是視口的大小?用戶不應該向下滾動? – thirtydot 2011-04-22 23:40:06

+0

「其餘的高度」是一個固定值還是變量值? – morgar 2011-04-22 23:44:21

+0

@morgar不固定 – Thew 2011-04-22 23:47:21

回答

4

這裏有一個小的演示:http://jsfiddle.net/32trY/56/

我對<div class="wrap">有點矯枉過正,所以很抱歉。

HTML

<div id="header"> 
    <div id="smallbox">Tiny Box</div> 
    <div id="headerMain">Header Part</div> 
</div> 


<div id="content"> 
    <div id="contentLeft"> 
     <div class="wrap"> 
      Left Thing 
     </div> 
    </div> 

    <div id="contentMain"> 
     <div class="wrap"> 
      The Content 
     </div> 
    </div> 
</div> 

CSS

html, body { 
    height: 100%; 
    padding: 0px; 
    margin: 0px; 
} 

#header { 
    height: 100px; 
    width: 100%; 
    position: absolute; 
} 

#header #smallbox { 
    float: left; 
    background-color: rgb(255, 180, 180); 

    width: 100px; 
    height: 100%; 
} 

#header #headerMain { 
    background-color: rgb(255, 200, 200); 
    height: 100%; 
} 

#content { 
    height: 100%; 
} 

#content #contentLeft { 
    float: left; 
    background-color: rgb(180, 180, 255); 

    width: 100px; 
    height: 100%; 
} 

#content #contentMain { 
    background-color: rgb(200, 200, 255); 
    height: 100%; 
} 

.wrap { 
    padding-top: 100px; 
} 
+0

哇,謝謝!那一個適合我。 – Thew 2011-04-22 23:59:49

+0

看我的編輯。該*看起來*正確,但沒有正確顯示內容。 – Blender 2011-04-23 00:04:42

+0

我很確定這可以在一個更優雅的莊園裏完成,但這就是我所能做的。這基本上是一個帶有側欄和標題的單列布局。標題中只有一個小浮動框,所以請嘗試搜索這種佈局。 – Blender 2011-04-23 00:05:40