2013-03-16 163 views
1

我卡住了,不知道如何解決。 我有一個粘腳,並且工作正常。 但我希望頁腳寬度爲100%。出於這個原因,我有一個外部div,將頁腳推到底部,並將內容div推到中心位置。佈局頁腳100%寬度和內容,直到頁腳

通常我爲整個外部div設置背景顏色。這意味着它的標題,內容和頁腳具有相同的背景顏色。對於每個div我可以設置一個覆蓋白色(覆蓋)的自定義顏色。

因爲佈局現在有100%的寬度我不能得到內容div推到頁腳的背景顏色。

Layout, outer_content is red, content is white, it should float till the bottom

我以前的故事,是一個有點複雜。我會簡短/澄清我的問題。 我怎樣纔能有一個頁眉和頁腳寬度爲100%,內容居中居中,背景顏色白色直到頁腳? 注意:內容可以擴大或小於100%的高度。

這是我使用的HTML:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
    <title>Temp</title> 
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 
    <link rel="stylesheet" type="text/css" href="style.css" /> 
</head> 
<body> 
<div id="outer"> 
    <div id="outer_header"> 
    <div id="header"> 
     <div id="menu_block"></div> 
     <div id="image_block"></div> 
    </div> 
    </div> 
    <div id="outer_content"> 
    <div id="content"> 
    dafdafdafda 
    </div> 
    </div> 
    <div id="clearfooter"></div> 
    <div id="outer_footer">Footer - | |- Footer </div> 
</div> 
</body> 
</html> 

我的CSS

/* mac hide\*/ 
html, body {height:100%} 
/* end hide */ 
body { 
    padding:0; 
    margin:0; 
    text-align:center; /* for ie6 and under */ 
    min-width:1024px; 
    background-color: #eee8d8; 
    color: #000000; 
} 
#outer { 
    min-height:100%; 
    min-width:1024px; 
    width:100%; /* add 2px if borders are not used */ 
    text-align:left; 
    margin:auto; 
    position:relative; 
} 

* html #outer{height:99.9%;} /*For ie as treats height as min-height anyway - also addreeses rounding bug at bottom of screen in IE*/ 
#outer_header { 
    height:280px; 
    width:100%; 
    float:left; 
    position:relative; 
    background-color:#1f4c3f; 
} 

#header { 
    height:280px; 
    width:1000px; 
    margin:auto; 
    position:relative; 
} 

#menu_block { 
    width:1000px; 
    height:90px; 
} 

#image_block { 
    width:1000px; 
    height:190px; 
    background-color:#FFFFFF; 
} 

#outer_content { 
    width:100%; 
    position:relative; 
    float:left; 
    background-color:red; 
} 

#content { 
    width:1000px; 
    height:100%; 
    position:relative; 
    margin:auto; 
    background-color:#FFFFFF; 
} 

#outer_footer { 
    width:100%; /* add 2px if borders are not used on the #outer div */ 
    clear:both; 
    height:50px; 
    background-color:#1f4c3f; 
    left:0; 
    bottom:0; 
    position: absolute; 
} 
* html #outer_footer {/*only ie gets this style*/ 
    \height:52px;/* for ie5 */ 
    he\ight:50px;/* for ie6 */ 
    margin-bottom:-1px; 
} 
div,p {margin-top:0}/*clear top margin for mozilla*/ 

#clearfooter {width:100%;height:52px;clear:both} /* to clear footer */ 

詩篇。如果可能的話我希望只使用CSS,沒有JavaScript的

編輯: 什麼結果應該是

Correct layout

正如你可以看到,圖片一個有一行白色(因爲文結束在那裏),但我想要的內容填充,直到粘腳...

+1

你能後的你希望你的頁面的樣子,因爲我有一個很難理解你想要什麼東西的圖像。 – dezman 2013-03-16 20:01:18

+0

嗨沃森,我添加了結果的圖片。我很抱歉,但我找不到正確的單詞...我希望這張照片能夠明確我在哪裏尋找。大多數教程解釋了以粘滯頁腳爲中心佈局的結果,但是,我希望內容居中,但頁腳100%...親切的問候 – 2013-03-16 22:48:40

回答

0

特此三種解決方案,根據whished滾動行爲。

  1. JSFiddle Solution沒有滾動條:

    標記:

    <div id="header"></div> 
    <div id="content"></div> 
    <div id="footer"></div> 
    

    樣式表:

    body, html { 
        margin: 0; 
        padding: 0; 
        height: 100%; 
        width: 100%; 
        overflow: hidden; 
    } 
    body { 
        background: red; 
    } 
    #header { 
        height: 160px; 
        background: #1f4c3f; 
    } 
    #content { 
        position: absolute; 
        background: white; 
        width: 500px; 
        top: 160px; 
        bottom: 40px; 
        left: 50%; 
        margin-left: -250px; 
    } 
    #footer { 
        position: absolute; 
        bottom: 0; 
        background: #1f4c3f; 
        width: 100%; 
        height: 40px; 
    } 
    
  2. JSFiddle solution與垂直滾動條和頁腳總是可見:

    標記:

    <div id="header"></div> 
    <div id="content"></div> 
    <div id="footer"></div> 
    

    樣式表:

    body, html { 
        margin: 0; 
        padding: 0; 
        width: 100%; 
    } 
    body { 
        background: url('http://i.stack.imgur.com/WcYOv.png') center repeat-y; 
    } 
    #header { 
        height: 160px; 
        background: #1f4c3f; 
    } 
    #content { 
        width: 500px; 
        margin: 0 auto; 
    } 
    #footer { 
        position: fixed; 
        bottom: 0; 
        background: #1f4c3f; 
        width: 100%; 
        height: 40px; 
    } 
    
  3. JSFiddle solution與垂直滾動條和移動頁腳:

    標記:

    <div id="wrap"> 
        <div id="header"></div> 
        <div id="content"></div> 
    </div> 
    <div id="footer"></div> 
    

    樣式表:

    body, html { 
        margin: 0; 
        padding: 0; 
        height: 100%; 
        width: 100%; 
    } 
    #wrap { 
        background: url('http://i.stack.imgur.com/WcYOv.png') center repeat-y; 
        width: 100%; 
        min-height: 100%; 
    } 
    #header { 
        height: 160px; 
        background: #1f4c3f; 
    } 
    #content { 
        width: 500px; 
        margin: 0 auto; 
        padding-bottom: 40px; 
    } 
    #footer { 
        position: relative; 
        top: -40px; 
        background: #1f4c3f; 
        width: 100%; 
        height: 40px; 
    } 
    
+0

嗨NGLN,它幾乎是我在尋找的東西。您對內容的正確方向,其填充到頁腳。但是,當我獲得更多文本時,內容和頁腳停留在那個位置上,而不是被展開和推下......我應該期待,只有CSS纔有解決方案? – 2013-03-16 23:16:04

+0

我已經使用了第三個選項。我在outer_content中使用了1px的圖像並居中。 – 2013-03-22 13:40:17

相關問題