UT

CSS Triangle Generator

Create CSS triangles using the border trick.

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