用html和css画太极图,利用css画一个太极图(阴阳八卦)实例

5268f80b9b1e01f982625ef6fac83ca1.png

这篇文章介绍利用css画一个太极图(阴阳八卦)实例

592e34ba610e719893134c92059f1933.png#yin-yang {

width: 96px;

height: 48px;

background: #eee;

border-color: red;

border-style: solid;

border-width: 2px 2px 50px 2px;

border-radius: 100%;

position: relative;

}

#yin-yang:before {

content: "";

position: absolute;

top: 50%;

left: 0;

background: #eee;

border: 18px solid red;

border-radius: 100%;

width: 12px;

height: 12px;

}

#yin-yang:after {

content: "";

position: absolute;

top: 50%;

left: 50%;

background: red;

border: 18px solid #eee;

border-radius:100%;

width: 12px;

height: 12px;

}

你可能感兴趣的:(用html和css画太极图)