用div+css生存太极图案

css代码

body{
    background: gray;
    }
        #test4{
            width: 0px;
            height: 600px;
            border-left: 300px solid white;
            border-right: 300px solid black;
            border-radius: 600px;
        }
        #test4::before{
            content: '';
            display: block;
            width: 100px;
            height: 100px;
            border: 100px solid white;
            background: black;
            border-radius: 100%;
            margin-left: -151px;
        }
        #test4::after{
            content: '';
            display: block;
            width: 100px;
            height: 100px;
            border: 100px solid black;
            background: white;
            border-radius: 100%;
            margin-left: -151px;
        }
    </style>

html代码

<div id="test4"></div>

 

posted @ 2018-04-09 14:14  静幻已空梦仍在  阅读(177)  评论(0编辑  收藏  举报