-1

我不确定是否有这样的属性。但我希望在这个网站的 div 中垂直添加文本 - http://chazsouthard.org/。但是我希望文本看起来顺时针旋转 90°。

我附上了一张来自 Photoshop 的截图作为我想要完成的示例。 在此处输入图像描述

4

2 回答 2

0

您需要在此处使用负数来实现您想要的方向。添加前缀版本以及跨浏览器兼容性。简单的codepen:http ://codepen.io/BuoyantMedia/pen/Asdmr

transform: rotate(-90deg);
-o-transform: rotate(-90deg);
-moz-transform: rotate(-90deg);
-webkit-transform: rotate(-90deg);
于 2013-07-12T19:43:09.943 回答
0

如果您使用的是 CSS3,我相信您正在寻找transform: rotate(90deg);

http://www.w3schools.com/cssref/css3_pr_transform.asp

于 2013-07-12T19:17:05.233 回答