>  기사  >  웹 프론트엔드  >  CSS 그리기 특수 그래픽 기본

CSS 그리기 특수 그래픽 기본

高洛峰
高洛峰원래의
2016-10-14 14:43:46935검색

1. 이등변삼각형

.isosceles{
    width: 0;
    height: 0;
    border:30px solid;
    border-left-color: transparent;
    border-right-color: transparent;
    border-top-color: transparent;
    border-bottom-color: red;
}

2. 직각삼각형

.right{
    width: 0;
    height: 0;
    border:30px solid;
    border-left: 0;
    border-right-color: transparent;
    border-top: 0;
    border-bottom-color: red;
}

3. 원

.round{
    width: 100px;
    height: 100px;
    background-color: red;
    border-radius:50%;   
}

.ellipse{
    width: 100px;
    height: 80px;
    background-color: red;
    border-radius:50%;   
}

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