问答详情
源自:13-2 排队显示-流动模型(一)

文字无法自动换行

div标签里面的文字内容box1,我把他改成“box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1”这段改成超过一行宽度的文字,为什么显示出现没法像上面的文字一样自动换行呢

提问者:legon7524306481 2016-11-10 16:05

个回答

  • 慕仙1223521
    2016-11-10 16:20:16

    详见 http://www.php100.com/html/webkaifa/DIV_CSS/2009/0416/2453.html

  • ownheart
    2016-11-10 16:19:48

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>对齐</title>
    <style type="text/css">
    #txt{
     color:red;
     word-break:break-all;
     width:200px;
     }
    </style>
    </head>
    <body>
    <div id="txt">box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1box1</div>
    </body>
    </html>