Make bootstrap dropdown menu go only downwards?

2019-07-27 02:17发布

i have a little problem with my Bootstrap Select Box on the following

Website

As you might notice while scrolling the page up and down its disturbing the dropdown opens to both sides up/down.

Now i am not sure if this might be a bug or standard functionality of the Bootstrap Select.

Preview: See here

How i am able to fix this to only opens downwards?

thanks for your kind help in advance.

1条回答
Melony?
2楼-- · 2019-07-27 02:33

Options can be passed via javascript

$('.selectpicker').selectpicker({
    dropupAuto: false
});

or

by HTML tag

<select class="selectpicker" data-dropup-auto="false">
    <option>1</option>
    <option>2</option>
    <option>3</option>
</select>
查看更多
登录 后发表回答