欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

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

程序员文章站 2022-03-25 16:28:54
...
这篇文章介绍利用css画一个太极图(阴阳八卦)实例

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

#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;
}

以上就是利用css画一个太极图(阴阳八卦)实例的详细内容,更多请关注其它相关文章!

相关标签: css 太极图