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;

相关文章

Css3如何实现鼠标移上变长特效?(图文+视频)
css3怎么实现鼠标悬停图片时缓慢变大效果?(图文+视频)
jquery如何实现点击网页回到顶部效果?(图文+视频)
css3边框阴影效果怎么做?(图文+视频)
css怎么实现圆角边框和圆形效果?(图文+视频教程)
Css3如何实现旋转移动动画特效