My Question is related to this one, except that it pertains to Mobile Chome.
Consider the following jsFiddle.
<select size="2">
<option value="0" selected="selected">Default</option>
<option value="1">select 1</option>
<option value="2">select 2</option>
<option value="3">select 3</option>
</select>
- On Desktop Chrome, it correctly displays two options in the dropdown.
- But on Mobile Chrome, it shows only one.
My Question:
- How can I get the 'size' attribute to work in Mobile-Chrome?