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.
如何调整文本以适应容器而不会溢出:自动...经过多次谷歌搜索后,我发现有很多插件可以处理这个问题,但它们会减小文本大小......我不想要那个东西..如果文本宽度是大(例如任何网址)。单词的剩余部分应该放在下一行
尝试使用word-wrap: break-word;带有 a 的css 规则overflow: hidden;来避免滚动条。
word-wrap: break-word;
overflow: hidden;
还应设置容器的宽度。