>  기사  >  웹 프론트엔드  >  CSS를 사용하여 태극권 다이어그램(Yin Yang Bagua)의 예를 그립니다.

CSS를 사용하여 태극권 다이어그램(Yin Yang Bagua)의 예를 그립니다.

高洛峰
高洛峰원래의
2017-03-14 16:04:262610검색

이 기사에서는 CSS를 사용하여 태극권 다이어그램(음양 팔괘)을 그리는 예를 소개합니다

CSS를 사용하여 태극권 다이어그램(Yin Yang Bagua)의 예를 그립니다.

#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를 사용하여 태극권 다이어그램(Yin Yang Bagua)의 예를 그립니다.의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.