左/右位置一个div

时间:2016-06-11 04:19:51

标签: javascript html css

所以,我有一个导航栏和<div>标记class="container-fluid"id="scrollable",其CSS属性如下所示。

#scrollable {
    position: absolute;
    overflow-y: scroll;
    top: 60px;
    bottom: 0;
}

但是,问题是,页面没有占据右侧的整个宽度。

Here is the Rendering details.

如何将正确的位置值设为0,即72.406

1 个答案:

答案 0 :(得分:2)

好的,我对id

进行了以下更改
#scrollable {
    position: absolute;
    overflow-y: scroll;
    top: 60px;
    bottom: 0;
    right: 0;
    left: 17.5%;
}

这解决了这个问题。