有没有办法在表格内将文本旋转 90 度:
就像是:
<tr>
<th class="bottomtop">
<span class="bottomtop">{{ task_definition }}</span>
</th>
</tr>
.bottomtotop {
transform:rotate(270deg);
-webkit-transform: rotate(270deg);
-moz-transform: rotate(270deg);
-ms-transform: rotate(270deg);
-o-transform: rotate(270deg);
transform: rotate(270deg);
}
我希望文本看起来像:
h
e
l
l
o
# with the actual letters rotated 90 degrees counter-clockwise.