使用 CSS 的垂直文本

发布于 2024-09-10 10:45:26 字数 98 浏览 1 评论 0原文

我可以在所有浏览器中使用 CSS 将文本旋转为垂直显示回到 IE6 吗?例如,我需要将“WORD”向左旋转 90 度,以便“W”位于底部,“D”位于顶部。

提前致谢。

Can I rotate text to be shown vertically using CSS in all browsers back to IE6? For example I need 'WORD' rotated 90 deg left so that 'W' is at the bottom and 'D' at the top.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

蘸点软妹酱 2024-09-17 10:45:26

特别对于 IE,请尝试以下操作:

#myText {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

http://msdn. microsoft.com/en-us/library/ms532918(VS.85).aspx

抱歉,我现在无法访问 IE 来测试版本,但我很确定它受支持回到IE6。

Specifically for IE, try this:

#myText {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

http://msdn.microsoft.com/en-us/library/ms532918(VS.85).aspx

I'm sorry, but I can't get to IE right now to test versions, but I'm pretty sure it is supported back to IE6.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文