Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Bootstrap Long list in Drop down

Bootstrap dropdown elements are overflowing.

You can check it out here: http://jsfiddle.net/Banzay/5dcontvb/3/

I can't use height, like below as this pushes other elements to have that height too:

.dropdown-menu {
    height: 400px;
}

Many Thanks,

Youssef

like image 247
Youssef Avatar asked Oct 27 '25 21:10

Youssef


1 Answers

you dont necessarily want to use "height" property since not all lists are going to be long. you want to use max-height so it can be shorter as well. Also, use the overflow-y:auto to set up a scrollbar if necessary new fiddle

.dropdown-menu {
    max-height:400px;
    overflow-y:auto;    
}
like image 191
lonewolf217 Avatar answered Oct 29 '25 11:10

lonewolf217