css – 如何强制`span’不包括在一行的末尾?

前端之家收集整理的这篇文章主要介绍了css – 如何强制`span’不包括在一行的末尾?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
@H_502_1@如果这是一条很长的文字,我希望它不需要包装即可扩展

解决方法

尝试
span
{
  white-space: pre;
}

any other value that fits from the w3c spec

normal
This value directs user agents to collapse sequences of white space,and break lines as necessary to fill line Boxes.

pre
This value prevents user agents from collapsing sequences of white space. Lines are only broken at preserved newline characters.

nowrap
This value collapses white space as for ‘normal’,but suppresses line breaks within text.

pre-wrap
This value prevents user agents from collapsing sequences of white space. Lines are broken at preserved newline characters,and as necessary to fill line Boxes.

pre-line
This value directs user agents to collapse sequences of white space. Lines are broken at preserved newline characters,and as necessary to fill line Boxes.

You should also be aware that there is limited IE support for some of the listed options

警告,跨浏览器内容凌乱:您可以用& nbsp;

原文链接:https://www.f2er.com/css/218354.html

猜你在找的CSS相关文章