How to Set Height for the Drop Down of Select box

Try adding this to the <select> element:

onfocus="this.size=10;" 
onblur="this.size=1;" 
onchange="this.size=1; this.blur();

like:

   <select onfocus="this.size=10;' onblur="this.size=1;" 
        onchange="this.size=1; this.blur();">

SAMPLE DEMO

Leave a Comment