Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在下拉列表选项中添加上标。我尝试了很多方法,但都没有成功。因此,请帮助我如何设置选项文本的一部分以使其看起来像上标。如果您知道在下拉列表选项中添加上标的任何其他方法,请帮助我。谢谢
在 HTML/CSS/Javascript 中没有办法做到这一点
但是,对于所有尝试使用<select>标签的人,请将您打算上标的内容包装在一个<span>元素中,然后对其应用 CSS。
<select>
<span>
例子
HTML
<p>x<span class="superscript">2</span> = 9</p>
CSS
span.superscript { vertical-align: super; font-size:50%; }
小提琴演示