<select>
htmlタグからオプションを選択して css ファイルを適用したいと考えています。
これらのリンクを既存の css ファイルに使用しようとしました。
<link rel="stylesheet" href="first.css" />
<link rel="stylesheet" href="second.css" />
でそれらをどのように使用できます<select>
か?
<select name="choose-an-option">
<option value="first">
<!--use first.css here-->
</option>
<option value="second">
<!--use second.css here-->
</option>
</select>