Answers for "css html how to make triangle"

CSS
3

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
0

triangle css

#triangle {
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-bottom: 30px solid blue;
}
Posted by: Guest on August-29-2021

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

Browse Popular Code Answers by Language