Make multiple-select to adjust its height to fit options without scroll bar

前端 未结 16 1056
说谎
说谎 2020-12-24 03:59

Apparently this doesn\'t work:

   select[multiple]{
     height: 100%;
   }

it makes the select have 100% page height...

auto

16条回答
  •  既然无缘
    2020-12-24 04:48

    Old, but this will do what you're after without need for jquery. The hidden overflow gets rid of the scrollbar, and the javascript makes it the right size.

    
    

    And just a tiny amount of javascript

    var select = document.getElementById('select');
    select.size = select.length;
    

提交回复
热议问题