0

How to open the SELECT / Open to the top. By default the list is always opened down, how to change it? If the standard methods of html / css

  <select>
    <option>Пункт 1</option>
    <option>Пункт 2</option>
  </select>

It is desirable standard features

Harry
  • 87,580
  • 25
  • 202
  • 214
Vladimir
  • 176
  • 1
  • 1
  • 12
  • maybe this can help you http://stackoverflow.com/questions/7814186/drop-down-menu-that-opens-up-upward-with-pure-css – dllhell Aug 23 '16 at 08:28
  • A echli use the standard list (ul / li) set his max-height, and if the height is less than for the input unit to display the list from top to bottom? – Vladimir Aug 23 '16 at 09:00
  • Thanks dllhell decision to resolved the issue. – Vladimir Aug 23 '16 at 09:03

1 Answers1

1

Sorry, It's not possible with native select list. You have to implement a customised select list.

  • A echli use the standard list (ul / li) set his max-height, and if the height is less than for the input unit to display the list from top to bottom? – Vladimir Aug 23 '16 at 09:00