微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

如果这是一条很长的文字,我希望它不需要包装即可扩展

解决方法

尝试
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.jb51.cc/css/218354.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。