使用 CSS 断行并换至下一行


使用 word-wrap 属性断行并换至下一行。你可以尝试运行以下代码在 CSS 中实施 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>

输出

更新时间: 20-Jun-2020

736 次浏览

开启你的 职业生涯

完成课程获取认证

开始
广告