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>

  • 相关阅读:
    解决linux sudo apt-get install xx是2出现无法定位软件包方法
    python的基础语法
    python 之装饰器
    Python-生成器
    Python中if __name__ = "__main__"的理解
    VS Code上配置python虚拟环境
    sympy简明用法
    Pandas中两个DataFrame的差集
    Time Series in pandas
    PyQt5高清屏幕自适应设置 QApplication.setAttribute(Qt.AA_EnableHighDpiScaling)
  • 原文地址:https://www.cnblogs.com/tl2f/p/4681812.html
Copyright © 2011-2022 走看看