可编辑Div不是换行符

时间:2017-04-27 13:48:52

标签: javascript css

我的div没有按照它应该(可编辑)做出反应。 它在打字时抄袭文字:

text overflows inside div

我需要做到这一点它会自动转到一个新的行,我不知道它的css部分还是JS部分,我尝试了我能在互联网上找到css部分的所有内容。 野兔是我的div的css:

height: 600px;
width: 1100px;
clear: left;
line-height: 14pt;
float:left;
overflow:hidden;

1 个答案:

答案 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>