Skip to content
On this page

CSS clip-path

수정하기
문서 생성 2022-01-30 21:47:37 최근 수정 2022-01-30 21:50:46
On this page

자르기 모양을 정의한다. 이때 정의한 모양 외의 나머지 영역은 숨겨진다(잘린다 clipped).

복잡한 모양을 만드는 데 도움을 주는 사이트가 있다. https://bennettfeely.com/clippy/

예시

<div class="circle">
<div class="sky"></div>
</div>
.circle {
position: relative;
clip-path: circle(50% at 50% 50%);
width: 180px;
height: 180px;
}
.sky {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 124px;
background: #7ddffc;
}

결과

clip path
clip-path.png

LINKS TO THIS PAGE

Tags