Published
- 1 min read
how to make a triangle in css
The solution for this is noted below
how to make a triangle in css
Solution
.triangle {
border-left: 5px solid transparent;
border-right: 5px solid transparent;
border-bottom: 5px solid red;
border-width: 100px;
}
Try other methods by searching on the site. That is if this doesn’t work