使一段文本不间断?
说我有一段这样的文字
你好,我是一些文本 你好,我是一些 文本你好我是一些文本你好我是 一些文字我不想被破坏 新行
考虑上面的段落。如果可能的话,我希望粗体部分不要跨行。例如,如果需要滚动条或其他东西,我希望它中断,但如果可以在该文本片段之前或之后插入分页符以便它可以适合一行,则不中断。
这怎么可能?我尝试过诸如page-break-inside
之类的东西,但它似乎在firefox中没有做任何事情。
say I have a piece of text like this
Hello I am some text Hello I am some
text Hello I am some text Hello I am
some text I do not wish to be broken
on new lines
Consider the above paragraph. I want for the bolded part to not be broken across a new line if possible. As in, I want it to break if it would require a scrollbar or something, but not break if it is possible to insert a page-break before or after that piece of text so that it can fit on one line.
How is this possible? I have tried things like page-break-inside
and such, but it doesn't seem to do anything in firefox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用
空白
属性:具有:
Use the
white-space
property:with:
添加此内容是为了完整性:
如果您不想使用 CSS,则可以使用text with space
- 参考 此处
对于纯文本块,我相信不再贬义的 html 格式标记如
等均有效。
、
、
对于与网站结构相关的内容,请使用
、
和
;
。Adding this for completeness:
If you do not want to use CSS, you could use
<nobr>text with space</nobr>
- reference hereFor pure text blocks, i believe not-anymore-depricated html formatting tags like
<i>
,<b>
,<nobr>
and alike are valid for use.For content relating to the site structure use
<em>
,<strong>
and<span class="">
.bootstrap 4 有一个 class="text-nowrap"
更多信息 https ://getbootstrap.com/docs/4.0/utilities/text/#text-wrapping-and-overflow
bootstrap 4 has a class="text-nowrap"
more here https://getbootstrap.com/docs/4.0/utilities/text/#text-wrapping-and-overflow