twitter bootstrap下拉问题

时间:2012-11-07 14:51:35

标签: ruby-on-rails-3 html5 css3 twitter-bootstrap

您好我在我的网站上使用twitter bootstrap。我把dropdown放在了collpsable中,这是在模态窗口中。我的问题是我在collaspable内部的dropdow,它切断了菜单。这是图像enter image description here

它应该显示如下:  enter image description here

我尝试过更改z-index属性但无法显示它。谁能知道问题是什么?

1 个答案:

答案 0 :(得分:0)

我相信它正在使用的是.dropdown-menu类,其位置设置为绝对值。如果您将位置更改为相对位置,它将为您提供所需的行为。

因此,您可以在自己的.css文件中隔离此更改,这样就不会触及主bootstrap.css文件,因此在不破坏样式的情况下更容易更新。

所以也许是custom.css中的东西:

.dropdown-menu {
position: relative;
}