Answers for "how to make triangle will css"

CSS
0

css triangle

#triangle-up {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid red;
}
Posted by: Guest on February-27-2022

Code answers related to "how to make triangle will css"

Browse Popular Code Answers by Language