html - How to remove whitespace of empty <select> in IE -


below screenshots took on empty <select> in ie8 , chrome. happens when <select> element empty, ie8 still shows long dropdown whitespaces while chrome shows nothing (which want in ie).

any ideas this?

p.s. can't add dummy <option> this.

empty select in ie , other browsers

you inserting empty option or optgroup this

<select><optgroup></optgroup></select> 

or

<select><option></option></select> 

or @shivam this

<select><option selected="selected">pick option</option> 

but mentioned don't need dummy option. browser behaves mentioned in question default.


Comments

Popular posts from this blog

vb.net - Alternative to the T-SQL AS keyword -

php - MySQLi binding parameters in a prepared statement doesn't work unless inserted after "WHERE" -

ios - CFRelease causing crash in iPad application -