我怎样才能在Html中使用

前端之家收集整理的这篇文章主要介绍了我怎样才能在Html中使用前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有这样的代码
<select>
  <option>1</option>
  <option>2</option>
  <option>3</option> 
</select>

我可以这样用吗?

<select>
 <option><sup>1</sup></option>
 <option><sup>2</sup></option>
 <option><sup>2</sup></option> 
</select>

解决方法

您不能在options标记内使用其他标记.
但你可以这样做:
<select>
 <option>&sup1;</option>
 <option>&sup2;</option>
 <option>&sup3;</option> 
</select>

该& sub1,& sub2,& sub3仅可用于1,2和3.

您可以使用以下代码编写其他数字:
Superscript Chart

或者您可以使用此网站获取字母的unicodes:
Unicode Character Search

原文链接:https://www.f2er.com/html/242657.html

猜你在找的HTML相关文章