Limit the displayed height of the drop-down list

I have a <select> with a lot of <option> . Is there a way to limit the height of the displayed <select> when opening it?

+4
source share
2 answers

the size limit is controlled by the browser, not what you can change.

See this answer: HTML selection window height (dropdown menu)

+9
source

According to the W3C specification, size will limit the number of visible parameters in the <select> element.

-2
source

Source: https://habr.com/ru/post/1332299/


All Articles