0

私は自分のウェブサイトにスクロールバーなしでページの下部 (フッター) まで伸びる 2 つの div を持たせるのに苦労しています。例: http://hoskyns50.co.uk/about-hoskyns-50th/スクロールバーを削除し、コンテンツの白い背景とサイドバーの div を表示して (この Web サイトのように) div でページを拡張したいページのフッターまでずっと。

関連する CSS:

body, html {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    min-height: 100%;
    height: 100%;
    line-height: 1;
    }
body { 
    min-height: 100%;
    height: 100%;
    font-family: 'Century Gothic', sans-serif;
    font-size: 13px;
    line-height: 21px;
    background: #e0d6b6 url(images/bg.png) repeat-x;
    color: #2f2f2f;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%; 
    }
.container {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 0px;
    top: 0px;
    width: 100%;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    background: transparent;
    margin: 0 auto -30px;
    padding: 0px;
    }
.contentwrapper {
    position: relative;
    display: block;
    min-height: 100%;
    height: 100%;
    margin: 0 5%;
    }
#content, #sidebar {
    position: relative;
    padding: 20px;
    background: #ffffff;
    min-height: 100% !important;
    height: 100%;
    display: block;
    position: relative;
    overflow: auto;
    margin-bottom: auto;
    }
#content {
    min-width: auto;
    width: auto;
    }
#sidebar {
    margin-left: 2% !important;
    width: 150px;
    float: right;
    }#footer, #push {
    clear: both;
    }
#footer {
    display: block;
    bottom: 0px !important;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    font-size: 12px;    
    border: none;
    background: #808080;
    color: #c4c4c4;
    vertical-align: middle;
    }

関連するhtml

<html>
<head>
</head>
<body>
<div class="container">
<div class="contentwrapper">
<div id="sidebar">
sidebar
</div><!--sidebar-->
<div id="content">    
content
</div><!--content-->
</div><!--contentwrapper-->
<div id="push"></div>
<div id="footer">
footer
</div> <!--footer-->
</div><!--container-->
</body>
</html>
4

2 に答える 2

0

css で次のように変更します。

#content, #sidebar {
    position: relative;
    padding: 20px;
    background: #ffffff;
    min-height: 100% !important;
    height: 100%;
    display: block;
    position: relative;
    overflow: auto;
    margin-bottom: auto;
    }

に:

#content, #sidebar {
    position: relative;
    padding: 20px;
    background: #ffffff;
    min-height: 100% !important;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    margin-bottom: auto;
    }

overflow値のみが変更されていることに注意してください。

于 2013-07-08T17:15:29.567 に答える