css – 如何在Span中打破长字?(使用Twitter Bootstrap)

前端之家收集整理的这篇文章主要介绍了css – 如何在Span中打破长字?(使用Twitter Bootstrap)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在我的网站上使用Twitter引导程序,而且我的跨度可能包含很长的字,我需要打破它.我用这个Css但不工作?什么问题?
.fidDivComment {
    white-space: pre-wrap;
    display: inline-block;
}

解决方法

你需要将这个添加到CSS的那个范围内
span {
  -ms-word-break: break-all;
  word-break: break-all;

  /* Non standard for webkit */
  word-break: break-word;

  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

有关说明,请参阅this article.

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

猜你在找的CSS相关文章