我正在设计一个下拉组合框来显示产品的价格列表。为此,我在 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>
但是,浏览器不支持选项标签中的字体标签,而如果它不在选项标签中,它就可以正常工作。我不能在整个事情中应用卢比字体,因为只有卢比符号显示而其他文本消失。
任何帮助...