css – 不留在div中的文本

前端之家收集整理的这篇文章主要介绍了css – 不留在div中的文本前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有一个div,文本将不会留在,我不知道为什么,我从来没有遇到过这个问题,我希望有些人可以帮助我,继承我的代码

HTML

#toronto-content {
  position: relative;
  z-index: 98;
  height: 100%;
  width: 700px;
  background-color: #0A0A0A;
  color: #FFF;
}

如果你想在这里查看完整的网站:http://lasociete.ca/new/

最佳答案
这将解决您的问题:

#toronto-content {
  white-space: normal;
}

但我会考虑将你的文字放入< p>或者< span>标签.

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

猜你在找的CSS相关文章