我想将单个文本单词旋转90度,支持跨浏览器(>= IE6, >= Firefox 2,任何版本的Chrome, Safari或Opera)。如何做到这一点呢?


当前回答

我的解决方案,将工作在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*/      
}

其他回答

我正在使用以下代码在页面中写入垂直文本。 Firefox 3.5+, webkit, opera 10.5+和IE

.rot-neg-90 {
    -moz-transform:rotate(-270deg); 
    -moz-transform-origin: bottom left;
    -webkit-transform: rotate(-270deg);
    -webkit-transform-origin: bottom left;
    -o-transform: rotate(-270deg);
    -o-transform-origin:  bottom left;
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

另一种解决方案是使用大多数浏览器都支持的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

我有问题,试图在纯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。

我的解决方案,将工作在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*/      
}

如果你使用Bootstrap 3,你可以使用它的一个mixins:

.rotate(degrees);

例子:

.rotate(-90deg);