css3新增样式(文本效果--- word-break 断点换行、word-wrap 长内容自动换行)

word-break 断点换行

word-break属性指定非CJK脚本的断行规则。

提示:CJK脚本是中国,日本和韩国("中日韩")脚本。

语法:

word-break: normal|break-all|keep-all;

break-all:

    <style>
        .con{
            width: 400px;
            height: auto;
            margin: 50px auto 0;
            border: 1px solid skyblue;
            /* break-all 允许在单词内换行。*/ 
             word-break: break-all;
         
        }
    </style>
</head>
<body>
    <div class="con">
        When you look around, it’s fairly easy to spot imported products. From foods, electric devices  to cars, Chinese people now have more shopping choices thanks to global trade. But this wouldn’t be possible without one organization – the World Trade Organization (WTO).
    </div>
</body>

keep-all:

    <style>
        .con{
            width: 400px;
            height: auto;
            margin: 50px auto 0;
            border: 1px solid skyblue;
            /*  break-all 允许在单词内换行。 */
            /* word-break: break-all; */
            /*keep-all 只能在半角空格或连字符处换行。 */
            word-break: keep-all;
        }
    </style>
</head>
<body>
    <div class="con">
        When you look around, it’s fairly easy to spot imported products. From foods, electric devices  to cars, Chinese people now have more shopping choices thanks to global trade. But this wouldn’t be possible without one organization – the World Trade Organization (WTO).
    </div>
</body>

预览效果图

 word-wrap 长内容自动换行

word-wrap属性允许长的内容可以自动换行。

语法:

word-wrap: normal|break-word;

    <style>
        .con{
            width: 400px;
            height: auto;
            margin: 50px auto 0;
            border: 1px solid skyblue;
            /* break-word 长内容自动换行*/
            word-wrap: break-word;
        }
    </style>
</head>
<body>
    <div class="con">
        When you look around, it’s fairly easy to spot importedimportedimportedimportedimportedimportedimportedimported products. From foods, electric devices  to cars, Chinese people now have more shopping choices thanks to global trade. But this wouldn’t be possible without one organization – the World Trade Organization (WTO).
    </div>
</body>

 效果预览图

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值