Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个充满动态内容的 div。div 宽度设置为 680 像素,但是如果内容超过此宽度,而不是换行,它只会继续在一行上创建一个非常宽的 div。
我应该怎么做才能强制 div 的 680px 并强制动态内容包含在这些限制内?
谢谢
您可以尝试在div 的css 类中添加以下内容:
.someClass { word-wrap: break-word; width: 680px; }
希望能帮助到你!