有没有办法垂直旋转文本?不旋转整个细胞?
Is there a way to just rotate text vertically? Without rotating the whole cell?
我正在尝试使用这个来做到这一点:
.VerticalText {
transform: rotate(-90deg);
}
但它正在旋转文本和单元格。如何在单元格内垂直旋转文本?
你应该制作一个 div 文本之外的内容,然后将其旋转到另一个方向。
所以:如果
.VerticalText {
transform: rotate(-90deg);
}
和外面的div调用例如.VerticalTextWrapper
.VerticalTextWrapper {
transform: rotate(90deg);
}
希望对您有所帮助!
我正在尝试使用这个来做到这一点:
.VerticalText {
transform: rotate(-90deg);
}
但它正在旋转文本和单元格。如何在单元格内垂直旋转文本?
你应该制作一个 div 文本之外的内容,然后将其旋转到另一个方向。
所以:如果
.VerticalText {
transform: rotate(-90deg);
}
和外面的div调用例如.VerticalTextWrapper
.VerticalTextWrapper {
transform: rotate(90deg);
}
希望对您有所帮助!