I'm using html select in the bootstrap col, but when i click drop down button in the mobile device(iOS and Android), it can not display the option list. But it works in the PC browser. The html code is like below:
<div class="row">
<div class="col-xs-6 col-sm-6 col-md-6">
<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>
</div>
<div class="col-xs-6 col-sm-6 col-md-6">
<select>
<option value="a">a</option>
<option value="b">b</option>
<option value="c">c</option>
</select>
</div>
</div>
If i remove those "col-xs-6 col-sm-6 col-md-6" class from div, the select drop down works in the mobile device.
So what's the issue? How can i make it work?
Try using like this
Working fiddle http://jsfiddle.net/52VtD/9092/