一个圆圈两个边框

来源:互联网 发布:精雕软件视频教程 编辑:程序博客网 时间:2024/04/28 16:10


效果就是这个图

<!DOCTYPE html>

<html lang="en">
<head>
    <meta charset="UTF-8">
    <title></title>
     <style>
    .box {
        width: 100px;height:100px;
        border: 2px solid green;
        position: relative;
        border-radius:50%;
    }
  .box:before{
        content:'';
        border:2px solid red;
        position: absolute;
        display: block;
        top: 0px;
        bottom:0px;
        right: 0px;
        left: 0px;
        border-radius:50%;
    }
  </style>
</head>
<body>
   <div class="box"></div>
</body>
</html>