Html css div 中的自动换行
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/19880043/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-29 15:12:35 来源:igfitidea点击:
Wordwrap within css div
提问by Q's Jester
I am having issues with wordwrapping within my div container. Here is the code for this specific section of code. I want it to automatically wrap to next line even if there are no spaces in the specified line of text.
我在 div 容器中遇到自动换行问题。这是此特定代码部分的代码。即使指定的文本行中没有空格,我也希望它自动换行到下一行。
#content {
position: justify;
font-size: 10px;
font-family: Times new roman;
width: 80%;
padding: 10px 10px 10px 10px;
height: auto;
overflow-x: auto;
color: #000;
}
回答by Josh Crozier
You need word-wrap:break-word
.
#content {
word-wrap: break-word;
position:justify;
font-size: 10px;
font-family: Times new roman;
width: 80%;
padding: 10px 10px 10px 10px;
height: auto;
overflow-x: auto;
color: #000;
}
回答by Charlie74
Add this to your CSS
将此添加到您的 CSS
word-wrap: break-word;