带有 css 的文本中的上标第一项
我想用 css $50.00 为该文本的第一个字符添加上标,以便 $ 仅是文本其余部分高度的一半。
我怎样才能用CSS做到这一点?有什么方法可以选择一段文本中的第一个符号并用 css 将其上标吗?
I want to superscript the first character of this text with css $50.00 so that the $ is only half the height of the rest of the text.
How can I do this with css? Is there any way of being able to pick the first symbol in a piece of text and superscript it with css?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这将使:
变为:
除了 $ 将成为上标。
编辑:我再次测试了它,可以确认上述工作。然而,所有浏览器都不支持 css 中的 before 和 after。
否则,您可以使用像这样的 html 来实现:
两种解决方案的概念标记证明:
This will make:
Into:
Except that $ will be superscript.
Edit: I tested it again and can confirm the above works. However all browser does not support before and after in css.
Otherwise you could just do it with html like this:
Proof of concept markup for both solutions: