Select Option default behavior in Chrome

Hi,

By Default, the select dropdown shows 20 items in Chrome and where as other browsers show 30. Is there any way we can change this setting in Chrome.

Thanks
Vinay

The select element’s “size” attribute determines how many option values to show at one time.

<select size="20">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
<option value="5">5</option>
</select>