CSS word-wrap 属性


word-wrap 属性用于换行并折行到下一行。

示例

以下显示示例语法 −

实时演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         div {
            width: 200px;
            border: 2px solid #000000;
         }
         div.b {
            word-wrap: break-word;
         }
      </style>
   </head>
   <body>
      <h2>word-wrap: break-word property</h2>
      <div class = "b"> ThisisdemotextThisisdemotext:
      thisisaveryveryveryveryveryverylongword. The long word wraps to
      the next line.</div>
   </body>
</html>

输出

更新于: 2020 年 6 月 20 日

190 次浏览

开启您的 职业

完成课程以获得认证

开始
广告