Полосы прокрутки HTML не отображаются, когда текст больше экрана - PullRequest
1 голос
/ 16 января 2012

Я делаю сайт, который использует множество DIV с высотой 100%. Теперь, когда текст больше страницы, я хочу, чтобы появлялись обычные полосы прокрутки. К сожалению, нет. и с попыткой 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 ]

1 голос
/ 16 января 2012
Положение

: исправлено на #innercontainer - это часть проблемы, если не вся проблема.Это будет действовать как абсолютно позиционированный элемент и будет удалено из нормального потока.

0 голосов
/ 16 января 2012

Проблема в том, что высота вашего contentdiv установлена ​​на 100%.Это расширяет его так, чтобы он был такой же высоты, как и его содержимое.Если вы попробуете что-то более похожее на это:

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

, вы должны увидеть появившиеся полосы прокрутки (но некоторые другие стили могут быть потеряны).

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...