我的div没有按照它应该(可编辑)做出反应。 它在打字时抄袭文字:
我需要做到这一点它会自动转到一个新的行,我不知道它的css部分还是JS部分,我尝试了我能在互联网上找到css部分的所有内容。 野兔是我的div的css:
height: 600px;
width: 1100px;
clear: left;
line-height: 14pt;
float:left;
overflow:hidden;
答案 0 :(得分:1)
将word-wrap:break-word;
与display:inline-block;
:
#mydiv{
display:inline-block;
word-wrap:break-word;
height: 600px;
width: 300px;
clear: left;
line-height: 14pt;
float:left;
overflow:hidden;
}
<div id='mydiv'>
Please,couldyoustopthenoiseI'mtryingtogetsomerestFromallthunbornchickenvoicesinmyheadWhenIamking,youwillbefirstagainstthewall
</div>