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>

  • 相关阅读:
    TOI2008 二元一次联立方程式
    福州三中信息学奥赛培训网址
    Youtube视频下载方式
    abs和其他绝对值的区别
    【转】C语言浮点数运算
    [转]解析字符串的方法
    TOI2008 大数运算
    【ZeroJudge】d781 Anagram
    【转载】NDatabase 5 Minutes Tutorial
    左岸读书编程是最能表达人类的思维的语言
  • 原文地址:https://www.cnblogs.com/tl2f/p/4681812.html
Copyright © 2011-2022 走看看