製品の価格リストを表示するドロップダウン コンボ ボックスを設計しています。そのために、Rupee フォントを css に埋め込みました。
これはコードです:
<select class="comboboxstyle" name="sports" id="sports">
<option class="optionstyle" value="subscribe">Subscribe</option>
<option class="optionstyle" value="monthly">Monthly <span style="font-family:Rupee">`</span>30</option>
<option class="optionstyle" value="weekly" >Weekly<span style="font-family:Rupee">`</span>20</option>
<option class="optionstyle" value="daily">Daily<span style="font-family:Rupee">`</span>10</option>
</select>
ただし、ブラウザは option タグ内の font タグをサポートしていませんが、option タグ内にない場合は正常に機能します。ルピーのシンボルだけが表示され、他のテキストが消えるため、ルピーのフォントを全体に適用することはできません。
何か助け...