我有一些类似的html,css:

<div style="width: 40em; text-align: center;">
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy tex
</div>


它呈现为this,但我希望最短的线位于顶部,例如this
我无法弄清楚该怎么做,任何帮助将不胜感激!

最佳答案

网络浏览器会自动显示文本,直到块宽结束。如果您想要不同的东西,则必须休息一下。

<div style="width: 40em; text-align: center;">
    Lorem Ipsum is simply dummy text<br>
    of the printing and typesetting industry. Lorem Ipsum has been the
    industry's standard dummy tex
</div>

10-07 21:58