私のPHPシステムでは、人々は色の組み合わせを選択できます。私はこのようなオプション選択リストでこれを行っています:
<style>
OPTION.purple{ width: 100px; background-color: #1d5280; color:white}
OPTION.green{ width: 100px; background-color: #30843b; color:white}
</style>
<select>
<option>Choose color</option>
<option class="purple">Purle/Blue</option>
<option class="green">Brown/Green</option>
</select>
現在、各オプションには1色がありますが、1つのオプションに2色を与えることは可能ですか。したがって、オプションの前半には1つの色があり、オプションの残りの半分には別の色があります。