我創建了一個固定的導航欄,並在其中有一個下拉菜單。 但下拉菜單被截斷,點擊時不可見。Twitter引導下拉截止
您可以在http://svn.figure8.be/bootstrap/menu.html上看到演示。
我希望有人能指出我正確的方向。
我創建了一個固定的導航欄,並在其中有一個下拉菜單。 但下拉菜單被截斷,點擊時不可見。Twitter引導下拉截止
您可以在http://svn.figure8.be/bootstrap/menu.html上看到演示。
我希望有人能指出我正確的方向。
在bootstrap.min.css中,.collapse
類中有一個屬性被稱爲overflow,它被設置爲隱藏。刪除此屬性,它將工作。 這是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中找到一個名爲「collapsing」的類 – Binny