How can I use in in Html

前端 未结 1 1030
天涯浪人
天涯浪人 2021-01-12 02:34

I have code as this :


<         


        
相关标签:
1条回答
  • 2021-01-12 03:12

    You can't use another tag inside options tag. But you can do something like:

    <select>
     <option>&sup1;</option>
     <option>&sup2;</option>
     <option>&sup3;</option> 
    </select>

    This &sub1, &sub2, &sub3 is only possible for 1, 2 and 3.

    You can write other numbers using codes from here: Superscript Chart

    Or you can use this website to get the unicodes of alphabets: Unicode Character Search

    0 讨论(0)
提交回复
热议问题