gpt4 book ai didi

css - Twitter Bootstrap 下拉截止

转载 作者:行者123 更新时间:2023-11-28 09:06:25 25 4
gpt4 key购买 nike

我创建了一个带有下拉菜单的固定导航栏。但是下拉菜单被截断并且在单击时不可见。

您可以在 http://svn.figure8.be/bootstrap/menu.html 查看演示.

我希望有人能给我指出正确的方向。

最佳答案

在 bootstrap.min.css 中,.collapse 类中有一个名为 overflow 的属性,它被设置为隐藏。删除此属性,它将起作用。这是溢出属性所在的类

.collapse {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition: height .35s ease;
-moz-transition: height .35s ease;
-o-transition: height .35s ease;
transition: height .35s ease;
}

或者你可以将它设置为可见

.collapse {
position: relative;
height: 0;
overflow: visible;
-webkit-transition: height .35s ease;
-moz-transition: height .35s ease;
-o-transition: height .35s ease;
transition: height .35s ease;
}

关于css - Twitter Bootstrap 下拉截止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12922005/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com