I cannot set the height for selecting options using css or jQuery in the Chrome browser, while the same code fragment works in Firefox without any problems.
CSS
#select-jqry option{ height: 50px; }
HTML
<select id='select-jqry'> <option>One</option> <option>Two</option> <option>Three</option> <option>Four</option> </select>
Even I tried with jQuery,
$('#select-jqry option').css('height','50px');
EDIT: Even filling doesn't work
Demo
source share