Answers for "div tag point triangle how to make"

CSS
1

make triangle using div

// css clip
<div id="triangle"></div>

#triangle {
	background-color: #003BDE;
	clip-path: polygon(50% 0, 100% 100%, 0 100%);
	width: 100px;
	height: 100px;
}
Posted by: Guest on July-05-2021

Code answers related to "div tag point triangle how to make"

Browse Popular Code Answers by Language