I am currently attempting to display a select box with scrolling on an iOS iPad mini.
Issue: The options are not appearing inside the select box, instead they are overflowing outside of it in the popover.
CSS
.indicators_geography {
font-size: 12px;
height: 105px;
overflow-x: scroll;
width: 169px;
}
HTML
<select class="indicators_geography" name="" multiple="multiple" id="" size="10">
<option is_adjustment="0" title="" value="2593">011</option>
<option is_adjustment="0" title="" value="2593">012</option>
<option is_adjustment="0" title="" value="2593">013</option>
<option is_adjustment="0" title="" value="2593">013</option>
<option is_adjustment="0" title="" value="2593">014</option>
</select>
The option values provided above are placeholders. Please disregard them.
Screenshot: