同心圆中圆

1. 利用三个 div 盒子,以及 margin、border-radius 属性实现同心圆效果:

<style>
    .outer {
      width: 150px;
      height: 150px;
      background-color: deeppink;
      border-radius: 50%;
    }
    .middle {
      width: 100px;
      height: 100px;
      margin-top: -125px;
      margin-left: 25px;
      background-color: hotpink;
      border-radius: 50%;
    }
    .inner {
      width: 50px;
      height: 50px;
      margin-top: -75px;
      margin-left: 50px;
      background-color: pink;
      border-radius: 50%;
    }
  </style>

<body>
  <div class="circle">
    <div class="outer"></div>
    <div class="middle"></div>
    <div class="inner"></div>
  </div>
</body>

效果:

2. 利用一个 div 盒子,以及其 border、box-shadow 属性:

<body>
  <div class="circle-shadow"></div>
</body>

  <style>
    .circle-shadow {
      margin: auto;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 40px solid pink;
      background-color: peachpuff;
      box-shadow: 0 0 0 40px rgba(2, 238, 255, 0.2);
      /*background-clip: padding-box;*/
    }
  </style>

效果:

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值