像在 Excel 中一样在 HTML 中垂直放置文本
我正在尝试在 HTML 中复制 Excel 的垂直文本功能,想知道是否有人尝试过此操作或知道是否有简单的方法来执行此操作?
我希望我的文本看起来像:
TH
I
S
inside
of a 元素
I'm trying to replicate Excel's Vertical Text feature in HTML and wondering if anyone has tried this or knows of an easy way to do this?
I want my text to look like:
T
H
I
S
inside of a <th>
element
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试这个。比使用
对间距提供更多控制来自网站:
CSS:
和标记:
You could try this. Gives a little more control over spacing than using
<br />
From the site:
CSS:
And the markup:
仅限 IE 的解决方案:
您可以对 th 标签尝试相同的操作。
IE-only soltuion:
You can try same thing for th tag.