CSS新特性之shapes

CSS Shapes布局可以实现不规则的文字环绕效果,需要和浮动配合使用。
shape-outside

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>新特性之Shapes(环绕文字)</title>
    <style>
        #parent{
            width: 300px;
            height: 300px;
            border: 1px blue solid;
            margin: 20px;
        }
        #shape{
            width: 100px;
            height: 100px;
            padding: 10px;
            border: 10px black solid;
            margin: 10px;
            float: left;
            border-radius: 50%;
            shape-outside: margin-box;
        }
    </style>
</head>
<body>
  <div id="parent">
      <div id="shape">
        MW
      </div>
      有这么一些人,在年夜团圆之际,放弃休息而登上没有硝烟的战场;有这么一些人,置自己生死于度外,而义无反顾地踏上前往疫区的火车;有这么一些人,穿着重重的防护服,在死神面前穿梭;有这么一些人,收起孩子气,披上白大褂,英勇挡在无数健康者前。
  </div>
</body>
</html>

在这里插入图片描述
clip-path
shape-margin

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>新特性之Shapes(环绕文字)</title>
    <style>
        #parent{
            width: 300px;
            height: 300px;
            border: 1px blue solid;
            margin: 20px;
        }
      /*  #shape{
            width: 100px;
            height: 100px;
            padding: 10px;
            border: 10px black solid;
            margin: 10px;
            float: left;
            border-radius: 50%;
            shape-outside: margin-box;
        }*/
        #shape{
            width: 100px;
            height: 100px;
            padding: 10px;
            border: 10px black solid;
            margin: 10px;
            float: left;
            background: aquamarine;
           clip-path: polygon(0 0,0 100px,100px 100px);
            shape-outside: polygon(0 0,0 100px,100px 100px);
            shape-margin: 10px;
        }
    </style>
</head>
<body>
  <div id="parent">
      <div id="shape">
        MW
      </div>
      有这么一些人,在年夜团圆之际,放弃休息而登上没有硝烟的战场;有这么一些人,置自己生死于度外,而义无反顾地踏上前往疫区的火车;有这么一些人,穿着重重的防护服,在死神面前穿梭;有这么一些人,收起孩子气,披上白大褂,英勇挡在无数健康者前。
  </div>
</body>
</html>

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

MW0309

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值