1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<html><head> <style> select { width: 200px; } option { padding: 0; width: 50%; background-color: cyan; } </style></head><body> <select size="3"> <option style="margin-right: 50%;">left</option> </select> </body></html>