CSS:div中文字换行设置

  1. word-break:break-all;只对英文起作用,以字母作为换行依据
  2. word-wrap:break-word; 只对英文起作用,以单词作为换行依据
  3. white-space:pre-wrap; 只对中文起作用,强制换行
  4. white-space:nowrap; 强制不换行,都起作用
  5. white-space:nowrap; overflow:hidden; text-overflow:ellipsis;不换行,超出部分隐藏且以省略号形式出现(部分浏览器支持)
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      div {
        width: 30px;
        /* height: 30px; */
        border: 1px solid rgb(71, 50, 50);
        margin-top: 20px;
      }
      /*只对英文起作用,以字母作为换行依据*/
      .p1 {
        word-break: break-all;
        width: 150px;
      }
      /*--只对英文起作用,以单词作为换行依据*/
      .p2 {
        word-wrap: break-word;
        width: 150px;
      }
      /*只对中文起作用,强制换行*/
      .p3 {
        white-space: pre-wrap;
        width: 150px;
      }
      /*强制不换行,都起作用*/
      .p4 {
        white-space: nowrap;
        width: 10px;
      }
      /*不换行,超出部分隐藏且以省略号形式出现*/
      .p5 {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100px;
      }
    </style>
  </head>

  <body>
    <div class="p1">
      hello world hello world hello world hello world hello world
    </div>
    <div class="p2">
      hello world hello world hello world hello world hello world
    </div>
    <div class="p3">
      hello world hello world hello world hello world hello world
    </div>
    <div class="p4">
      hello world hello world hello world hello world hello world
    </div>
    <div class="p5">
      hello world hello world hello world hello world hello world
    </div>
  </body>
</html>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值