zoukankan      html  css  js  c++  java
  • Div+Css画太极图源代码

    <!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        <title>Div+Css太极图</title>
        <style type="text/css">
        .circle{
             100px;
            height: 50px;
            border:1px solid black;
            border-radius: 100px;
            position:relative;
            border-bottom:50px solid black;
          }
        .circle::before{
            float:left;
            content: '';
             10px;
            height: 10px;
            border: 20px solid black;
            border-radius: 50px;
            position: relative;
            top:50%;
            left:0;
            background-color:#fff;

         }
        .circle::after{
            float:right;
            content: '';
             10px;
            height: 10px;
            border: 20px solid #fff;
            border-radius:50px;
            position: relative;
            top:50%;
            left:0;
            background-color:#000;
          }

        </style>
      </head>
      <body>
        <div class="circle">

        </div>
      </body>
    </html>

  • 相关阅读:
    Spring之Condition(二)在哪里解析的
    SpringBoot启动跟代码过程
    Spring之Condition(一)
    Kafka之 vm.max_map_count
    Redis常见面试题
    Redis为什么快
    TCP一个包多大
    场景问题
    这是一个测试
    小程序-使用django-drf开接口的步骤
  • 原文地址:https://www.cnblogs.com/tl2f/p/4681812.html
Copyright © 2011-2022 走看看