CSS 삼각형 생성기

테두리를 사용하여 CSS 삼각형 만들기

브라우저 처리데이터가 브라우저를 떠나지 않습니다

Triangle Direction

Size

Width80px
Height80px
Equal Sides

Color

Preview

CSS (Border Method)

.triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 80px solid #3b82f6;
}

CSS (Clip-path Method)

.triangle {
  width: 80px;
  height: 80px;
  background-color: #3b82f6;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

HTML

<div class="triangle"></div>

Quick Select

About CSS 삼각형 생성기

테두리를 사용하여 CSS 삼각형 만들기

Use this free online css 생성기 tool to work faster without installing extra software. The interface is built for quick input, clear output, and straightforward results on desktop and mobile devices.

Processing

This tool runs in your browser whenever possible, which keeps your inputs private and reduces unnecessary round-trips to the server.