当文本比屏幕大时,HTML滚动条不会显示

时间:2012-01-16 19:44:32

标签: html css scrollbar

我正在建立一个使用大量100%DIV的网站。现在,当文本大于页面时,我希望显示正常的滚动条。不幸的是他们没有。并且随着尝试overflow:auto,它会变得越来越糟。

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" lang="en" xml:lang="en">
    <head>
        <title>&lt;PageTitle&gt; | Anga Designs</title>
<!-- Stylesheets -->
        <link rel="stylesheet" type="text/css" href="css/standard.css" />
            <!--[if IE]><link rel="stylesheet" type="text/css" href="css/iefix.css" /><![endif]-->
<!-- /Stylesheets -->
<!-- Scripts -->
<script src="http://code.jquery.com/jquery-1.6.2.min.js" type="text/javascript"></script>
<!-- /Scripts -->
<!-- Meta Tags -->
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<!-- /Meta Tags -->
    </head>
    <body>
<div id="bgstripe"></div>
<div id="outercontainer">
    <div class="leftbar"></div>
    <div id="innercontainer">
        <div id="header">
            <div class="leftbar"></div>
            <div class="innercontent">

            </div>
        </div>
        <div id="content">
            <div>
                <span class="articletitle">Page Title!</span>
                <div class="articletitlebar"></div>
            </div>
            <div class="articletext"><p>
                Put your text here
            </div>
        </div>
    </div>
    <div id="faderight"></div>
</div>
<!-- /container -->
    </body>
</html>

CSS

body, html {
    margin: 0;
    background-color: #eeeeee;
    height: 100%;
    font-family: Tahoma;
    overflow: auto;
}

#bgstripe {
    float: left;
    background-color: #67a7ff;
    width: 50%;
    height: 100%;
}

#faderight {
    position: relative;
    float: right;
    background: url('../images/layout/fade-right.jpg');
    width: 50px;
    height: 100%;
}

#outercontainer {
    position: relative;
    margin: auto;
    width: 1000px;
    height: 100%;
    background-color: #2a5d95;
}

#innercontainer {
    position: fixed;
    float:left;
    width: 950px;
    background-color: #2a5d95;
}

.leftbar {
    position: absolute;
    background: url('../images/layout/leftbar.png');
    width: 50px;
    height: 100%;
}

.innercontent {
    position: relative;
    float: left;
    background-color: #2a5d95;
    height: 100%;
    width: 100%;
    margin-left: 50px;
}

#header {
    position: relative;
    float: left;
    width: 950px;
    height: 200px;
}

#content {
    position: relative;
    float: left;
    width: 100%;
    height: 100%;
}

.articletitle {
    background-color: #003366;
    padding: 10px 10px 10px 60px;
    font-size: 20px;
    font-family: Georgia;
    color: #eeeeee;
}

.articletitlebar {
    position: absolute;
    width: 50px;
    height: 40px;
    background: url('../images/layout/articletitlebar.png');
    margin-top: 10px;
}

.articletext {
    display:block;
    position: absolute;
    margin-left: 70px;
    margin-top: 10px;
    margin-right: 20px;
    margin-bottom: 10px;
    width: 700px;
    min-height: 500px;
}

任何可以帮助我的人?我现在完全失去了.. 在线样本:http://rune.blupfis.nl/wendy/

2 个答案:

答案 0 :(得分:1)

位置:固定在#innercontainer上是问题的一部分,如果不是整个问题。这将是一个绝对定位的元素,并从正常流程中删除。

答案 1 :(得分:0)

此处的问题是contentdiv的高度设置为100%。这使它扩展,使其与其内容的高度相同。如果你尝试更像这样的东西:

#content {
  float: left;
  height: 500px;
  overflow: auto;
  position: relative;
  width: 100%;
}

你应该会看到滚动条出现(但现在可能会丢失一些其他样式)。