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.
http://www.vidyasocks.com/forums.php?id=16&id=16
正如您在此处看到的,我遇到了文本溢出问题。我能做些什么来阻止它溢出?当用户提交表单时,如何在容器的最大宽度处停止文本并让它换行到下一行?
您需要添加
word-wrap: break-word;
To div#postcenter > div,所以你最终得到这个:
div#postcenter > div
div#postcenter > div { word-wrap: break-word; }
word-wrap: break-word始终确保长的、不间断的单词在行尾换行(至少在支持它的浏览器中)。
word-wrap: break-word