如何在Android webview中显示旋转/垂直文本

时间:2012-03-31 19:40:20

标签: android html css webview

我想在Android股票网页浏览中显示向上/逆时针旋转90度的文字

1 个答案:

答案 0 :(得分:0)

帽子提示到ScottGale.com我找到了顺时针的例子。这是在Gingerbread浏览器中测试的。

p.css-vertical-text {
 -webkit-transform:rotate(270deg);
 -moz-transform:rotate(270deg);
 -o-transform:rotate(270deg);
 white-space:nowrap;
 display:block;
 position:absolute;
 width:24px;
 left:24px;
 bottom:0;
 font-size:24px;
 font-weight:normal;
}