How do I ensure that the Options list of Select components expands upward?

as the title, as shown in the figure:

clipboard.png

Mar.29,2021

this can't be done. Facing up and down is controlled by the select component itself. If there is not enough room to expand down, it will be up.

you can try. GetPopupContainer, doesn't know if it's feasible. It hasn't been verified.


set the style

.ant-select-dropdown{
    top:auto !important;
    bottom:0;
}
Menu