Bootstrap - 下拉列表创建滚动条到父DIV

时间:2013-09-20 13:26:54

标签: css twitter-bootstrap

Bootstrap下拉列表在放置在底部时为父div创建滚动条。有谁知道如何解决它?

jsFiddle

overflow: hidden课程中设置overflow: visiblebs-example很容易。但我需要滚动条,因为我会动态地向该div添加内容。那时它需要滚动条。即使我有滚动条下拉列表被推到底部。无法下拉浮动滚动条或者当底部空间不足时我可以向上打开吗?

3 个答案:

答案 0 :(得分:7)

你必须使用overflow:inherit;而不是自动。

http://jsfiddle.net/gildonei/xMddf/1131/

MyFile
.bs-example
{
    margin: 30px;
    height: 100px;
    border: 1px solid #F00;
    overflow: inherit;
}

答案 1 :(得分:0)

像这样

<强> demo

<强> CSS

.bs-example
{
    margin: 30px;
   height: 100px;
    overflow: hidden;
}

<强> demo1

<强> CSS

.bs-example
{
    margin: 30px;
   min-height: 400px;
    overflow: auto;
}

答案 2 :(得分:0)

修复了不眠之夜的问题。enter image description here

在新标签页中打开图片,因为我无法在stakoverflow上传JSFiddle