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
  • 83,910
  • 24
  • 185
  • 203
Vladimir
  • 156
  • 1
  • 1
  • 11
  • 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.

Mohammad Reza
  • 1,254
  • 6
  • 14
  • 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