我想将单个文本单词旋转90度,支持跨浏览器(>= IE6, >= Firefox 2,任何版本的Chrome, Safari或Opera)。如何做到这一点呢?
当前回答
另一种解决方案是使用大多数浏览器都支持的SVG文本节点。
<svg width="50" height="300">
<text x="28" y="150" transform="rotate(-90, 28, 150)" style="text-anchor:middle; font-size:14px">This text is vertical</text>
</svg>
演示:https://jsfiddle.net/bkymb5kr/
关于SVG文本的更多信息:http://tutorials.jenkov.com/svg/text-element.html
其他回答
我的解决方案,将工作在Chrome, Firefox, IE9, IE10(改变度根据您的要求):
.rotate-text {
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
filter: none; /*Mandatory for IE9 to show the vertical text correctly*/
}
我改编自http://snook.ca/archives/html_and_css/css-text-rotation:
<style> .Rotate-90 { display: block; position: absolute; right: -5px; top: 15px; -webkit-transform: rotate(-90deg); -moz-transform: rotate(-90deg); } </style> <!--[if IE]> <style> .Rotate-90 { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3); right:-15px; top:5px; } </style> <![endif]-->
我有问题,试图在纯CSS -取决于字体,它可以看起来有点垃圾。作为一种替代方法,您可以使用SVG/VML来实现它。有一些库可以帮助它轻松地跨浏览器,例如Raphael和ExtJS。在ExtJS4中,代码如下所示:
var drawComp = Ext.create('Ext.draw.Component', {
renderTo: Ext.getBody(), //or whatever..
height: 100, width: 100 //ditto..
});
var text = Ext.create('Ext.draw.Component', {
type: "text",
text: "The text to draw",
rotate: {
x: 0, y: 0, degrees: 270
},
x: -50, y: 10 //or whatever to fit (you could calculate these)..
});
text.show(true);
这将在IE6+和所有现代浏览器中工作,然而,不幸的是,我认为你至少需要FF3.0。
如果CSS写作模式:sideway -lr是你喜欢的,而你恰巧遇到了基于chromium/chrome的浏览器。你可以试试
{
writing-mode: vertical-rl;
transform: rotate(180deg);
}
所以现在所有的浏览器都支持它。
参考:https://bugs.chromium.org/p/chromium/issues/detail?id=680331 c4
另一种解决方案是使用大多数浏览器都支持的SVG文本节点。
<svg width="50" height="300">
<text x="28" y="150" transform="rotate(-90, 28, 150)" style="text-anchor:middle; font-size:14px">This text is vertical</text>
</svg>
演示:https://jsfiddle.net/bkymb5kr/
关于SVG文本的更多信息:http://tutorials.jenkov.com/svg/text-element.html