I've been attempting to display a select box with two options side by side in a list format. Struggling to find any libraries that can achieve this functionality. Here is an example:
<select>
<option x><option y>
<option x><option y>
<option x><option y>
<option x><option y>
<option x><option y>
</select>
View a working example here (I apologize for not being able to provide a jsfiddle as I'm unable to make it work!) where the "Right Eye PWR:" dropdown list showcases this feature.
I've experimented with styling the options to float left and right with a width of 50%, but haven't had much success (especially considering cross-browser compatibility). Any suggestions on how best to approach this problem would be greatly appreciated. Thank you in advance.