Answers for "how to create a triangle in html"

CSS
1

how to make a triangle in css

.triangle{
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid red;
  border-width:100px;
}
Posted by: Guest on March-04-2021

Code answers related to "how to create a triangle in html"

Browse Popular Code Answers by Language