CSS Triangle Generator
Create pure CSS triangles using borders.
.triangle {
width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 100px 50px;
border-color: transparent transparent oklch(var(--p)) transparent;
}Create pure CSS triangles using borders.
.triangle {
width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 100px 50px;
border-color: transparent transparent oklch(var(--p)) transparent;
}