有谁知道如何使文本在div中从上到下对齐.
所以我甚至不会让我证明这一点...我只是希望这些字母在页面的垂直线上叠加在一起,就像建筑物的故事一样.希望我不需要用图像来做.
在保持正常方向的同时使字母从上到下,如下所示:
F
Ø
Ø
HTML:
letters
CSS:
.toptobottom{ width: 0; word-wrap: break-word; }
自动换行允许单词在中间被打破,因此这将使字母从上到下.它也得到了很好的支持:https://developer.mozilla.org/en-US/docs/CSS/word-wrap
writing-mode
CSS writing-mode
属性可让您的文字垂直显示。
.traditional-vertical-writing
{
writing-mode: vertical-rl;
}
This text runs vertically.
???? ?(but the thing is)??since Latin alphabets are not for vertical writing,
not only the lines but each of the non-vertical-writing letters also gets rotated.
0123456789
HTML:
Hello!
CSS:
.bottomtotop { transform:rotate(270deg); }