使用 Tailwind 防止孤立词?

问题描述 投票:0回答:1
tailwind-css typography
1个回答
0
投票

您可以使用例如:

<p>This is my text that I don't want an orphaned <span style="white-space: nowrap ;">word for</span></p>
或者
<p>This is my text that I don't want an orphaned <span class="nowrap">word for</span></p>

使用 CSS,例如:

span.nowrap { white-space: nowrap ; }

© www.soinside.com 2019 - 2024. All rights reserved.