My Dropup looks like this:>
<div class="dropup"> <button class="btn btn-primary btn-raised dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{selectList.selectedListItem}} <div class="ripple-container"></div> </button> <div class="dropdown-menu"> <a class="dropdown-item" ng-repeat="list in roleList" href="#" ng-value="list.role" name="{{list.role}}" ng-click="update(list.role, list._id)" id="{{list.role}}" ng-model="selectList" name="selectedList">{{list.role}}</a> </div> </div>
And I use CSS in the dropdown as →
overflow: scroll; max-height: 200px;
But this does not work for me. Any other solution?
Update After adding this Css to the drop-down menu->
overflow: scroll; max-height: 200px !important;
My popup menu now looks without scrolling →

source share