Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以使用 css.like 使文本从上到下?示例: H E L L O W O R L D
不能通过<br>在html中添加标签来完成,我不想旋转字体。
<br>
如果您不想使用<br/>或旋转字体,那么您可以使用它来实现相同的目的。
<br/>
CSS
.verticle { width:10px; word-wrap:break-word; }
HTML
<div class="verticle"> STACKOVERFLOW </div>
JsFiddle 演示
更新:是的设置width:0px解决了一行中较小的字母的问题。
width:0px
更新小提琴