web-dev-qa-db-ja.com

コンテンツdivのみをスクロールし、その他は修正する必要があります

3つのdivがあります。 headerとleft_side divを修正し、content divをスクロールする必要があります。私は解決策を探していましたが、overflowpositionで何かを見つけました。しかし、私はそれを正しく使用することはできません。これどうやってするの?私はあらゆる種類の答えに感謝します。

Picture

  HTML
------
<div id="header">

</div>

<div id="left_side">    
</div>

<div id="content">
</div


CSS
-----
body {   
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0px auto;
    font-family: Calibri, Georgia, Ubuntu-C;  
    font-size: 16px;
    margin-bottom: 20PX
}

#header{
    width: 100%;
    height: 139px;
    background-image: url('images/Header_grey.gif');   
}


#left_side{
    width: 210px;
    height: 700px;
    background-image: url('images/Left_side.gif');
    background-repeat:repeat-y;
    overflow:hidden; 
    position:absolute;
    font-size: 16px;
}

#content{
     height: auto;
     padding: 20px;
     margin-left: 230px;
     margin-right: 20px;
    padding-bottom: 30px
 }
17
jstorm31

overflow: auto;必要に応じてスクロールを追加します

#header{
    width: 100%;
    height: 139px;
    background-image: url('images/Header_grey.gif');   
    overflow: hidden;  //code added to prevent scroll
}


#left_side{
    width: 210px;
    height: 700px;
    background-image: url('images/Left_side.gif');
    background-repeat:repeat-y;
    overflow:hidden;  //code added to prevent scroll
    position:absolute;
    font-size: 16px;
}
#content{
     height: auto;
     padding: 20px;
     margin-left: 230px;
     margin-right: 20px;
    padding-bottom: 30px;
    overflow: auto;  //code added
 }
18
Praveen
  • 最初に、コンテンツ領域の高さを固定する必要があります。
  • 次にoverflow:autoあり

コードのエラー:: divのスクロールバーが必要ですが、そのdivの高さをautoとして宣言しています

高さが自動の場合、スクロールバーを要求することはできません。スクロールバーを使用するには、そのdivの高さを固定する必要があり、コンテンツの高さがdivの高さより大きい場合、スクロールバーが自動的に導入されます

注:したがって、cssの変更は

#content{
 height: 300px;/*..very important if you want scroll bar...*/
 overfow:auto; /*..will introduce scroll bar when needed..*/
 padding: 20px;
 margin-left: 230px;
 margin-right: 20px;
padding-bottom: 30px
}

例::[〜#〜] fiddle [〜#〜]

10

位置固定を使用できます。 http://jsfiddle.net/Nrs2u/1/

#header {
    position: fixed;
    z-index: 2;
    left: 0%;
    top: 0%;
    width: 100%;
    height: 10%;
    background-color: purple;
}
#side {
    position: fixed;
    z-index: 2;
    left: 0%;
    top: 10%;
    width: 10%;
    height: 90%;
    background-color: red;
}
#body {
    position: absolute;
    left: 10%;
    top: 10%;
    width: 90%;
    height: 300%;
    background-color: orange;
}
1
Louis Ricci

スクロール中にヘッダーと左側をそれぞれの位置に維持したい場合は、position:fixedを使用する必要があります

1
Cody Guldner
#left_side{
    ...
    overflow:auto;  

}

padding-rightも設定して、divの内部コンテンツとスクロールバーの間にスペースを作成します

0
Javier Puga

学習課題として、CSS3 Flexboxを使用して回答を更新することにしました。また、jstorm31が作成しようとしていたレイアウトにより一致するようにしました。

Ritabrataの答えは正しいものです。特定の要素にスクロールバーを持たせる場合は、その高さ(および/または幅)を固定サイズに設定し、オーバーフローを自動に設定する必要があります。

ここにもコードがあります: Plunker

style.css

#header{
    overflow: hidden; 
    background-color: #880016; 
    height: 50px;
    border-bottom: 4px solid black;
    padding: 10px;
    font-size: 20px;
}
#side_and_content {
    display: flex;
}
#left_side{
    flex: 1;
    overflow:hidden; 
    background-color: #ED1B24;  
    height: 200px;
    border-right: 2px solid black;
    padding: 10px;
}
#content{
    flex: 5;
    overflow: auto;
    background-color: #FF7F26;   
    height: 200px;
    border-left: 2px solid black;
    padding: 10px;
}

index.html

<div id="header">
    header header header header header header
</div>
<div id="side_and_content">
    <div id="left_side">  
        left side left side left side left side left side
    </div>

    <div id="content">
CSS3 Flexbox Concepts: 
Flexbox consists of flex containers and flex items.
A flex container is declared by setting the display property of an element to either flex
 (rendered as a block) or inline-flex (rendered as inline).
Inside a flex container there is one or more flex items.
Note: Everything outside a flex container and inside a flex item is rendered as usual.
Flexbox defines how flex items are laid out inside a flex container.
Flex items are positioned inside a flex container along a flex line.
 By default there is only one flex line per flex container.<br>
 It is also possible to change the direction of the flex line.
If we set the direction property to rtl (right-to-left), the text is drawn right to left, and also the flex line changes direction, which will change the page layout
    </div>
</div>
0
John Pankowicz