css实现将div变成三角形

.tranagleWhite{
	width:0;
    height:0;
    border:100px solid;    /*更改border的宽度即可改变三角的大小*/
    border-color:transparent transparent white transparent;  
                /*更改color可以改变三角的方向*/
}

效果图:

猜你喜欢

转载自blog.csdn.net/qq_38006520/article/details/81393110