Wie man ein Dreieck in CSS macht
.triangle{
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid red;
border-width:100px;
}
PerfectPass1