1

我有两个并排的 DIV。一个 div 是我的侧边栏(屏幕左侧),另一个 div 是我的主要内容(屏幕右侧)。

我在寻找什么:我想要的是屏幕最右侧的一个可见滚动条。我希望该滚动条可以滚动左右 div。

我的问题:目前我的左侧边栏有一个树形菜单。当我展开我的树形菜单时,我没有滚动条来向下滚动浏览展开的侧栏内容。我可以在我的侧边栏中添加一个滚动条,但这看起来很丑陋。我只想要处理两个 div 的最右边的 1 个滚动条。
有人可以帮我解决这个问题吗?

我的index.php档案

<?php

include 'sidebar.php';
include 'main_body.php';

?>

我的sidebar.php

<?php

    echo '<link rel="stylesheet" href="css/style.css" type="text/css">';
    echo '<script type="text/javascript" src="js/jquery1_3_2.js"></script>';

    include 'function/functions.php';
    // Establish a connection to our database
    db_connect();

    echo'
    <script type="text/javascript">
    jQuery(document).ready(function() {
      jQuery(".content").hide();
      //toggle the componenet with class msg_body
      jQuery(".heading").click(function()
      {
        jQuery(this).next(".content").slideToggle(500);
      });
    });
    </script>
    ';

    echo'<div class="sidebar">';

    // Side Bar Start
    echo '
    <img src="images/hdc_logo.png">
    <br>
    <br>

    <p class="heading"><strong>CUSTOMER</strong></p>
    <div class="content">';

    //Display all customers from database
    query_all_customers();

    echo '</div>
    <p class="heading"><strong>CABINET</strong></p>
    <div class="content">';

    // Display all cabinets from database
    query_all_cabinets();
    echo'</div>
    </div>';

    ?>

我的主要内容区

<?php

    ini_set('display_errors', 1);

    echo '<div class="main">';

    echo'
    <br>
    <br>
    Some data can go here
    <br>
    <br><br>
    <br>
    and here
    <br>
    <br>
    and here
    <br>
    <br>
    Some data can go here
    <br>
    <br><br>
    <br>
    and here
    <br>
    <br>
    and here
    <br>
    <br>
    Some data can go here
    <br>
    <br><br>
    <br>
    and here
    <br>
    <br>
    and here
    <br>
    <br>
    Some data can go here
    <br>
    <br><br>
    <br>
    and here
    <br>
    <br>
    and here';
    ?>

我的.css档案

.sidebar {
    width:200px;
    position:fixed;
    top:0px;
    left:0px;
    height:100%;
    background-color:#54524F;
    /*overflow-y: scroll;*/
}
.main {
    width: auto;
    margin-left: 200px;
}
.heading {
    margin: 1px;
    color: #fff;
    padding: 3px 10px;
    cursor: pointer;
    position: relative;
    background-color:#000000;
}
.content {
    padding: 5px 10px;
}
#submit {
    width:185px;
    background-color: black;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius:6px;
    color: #fff;
    font-family:'Oswald';
    font-size: 16px;
    text-decoration: none;
    cursor: pointer;
    border:none;
}
#submit:hover {
    border: none;
    background:#FF9933;
    box-shadow: 0px 0px 1px #777;
}
tr:nth-of-type(odd) {
    background-color:#D4D4D4;
}
.container0 {
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 30px;
    background-color:black;
}

JSFiddle

4

1 回答 1

0

在您的 CSS 中,将侧边栏的位置设置为相对并将浮动设置为左侧,如下所示:

.sidebar {
    width:200px;
    position:relative;
    top:0px;
    left:0px;
    height:100%;
    background-color:#54524F;
    float:left
}

您的 jsfiddle 的更新版本向您展示它的工作原理:) http://jsfiddle.net/BrJDE/3/

因为你不想让滚动条出现在页面的一侧,所以我为你做了更多的例子。告诉我他们是否是你想要的,如果不是,我很乐意再次帮助你。

与您提供的内容相比,这两个示例都使用了 2 个额外的 div。这些将使您可以将滚动条定位在这些 div 中,而不是在浏览器的一侧。如果您需要我解释我所做的更改,请告诉我。

页面内的滚动条:http: //jsfiddle.net/BrJDE/6/

滚动div左侧页面内的滚动条:http: //jsfiddle.net/BrJDE/5/

于 2013-09-06T14:40:18.057 回答