设计稿中的小三角该怎样解决?

全部礼品文字上边有一个小三角,该怎么用css画出来呢
图片描述

阅读 2.7k
4 个回答

div的上边框就是一个倒三角形

.triangel {
 border-width:100px;
 border-style:solid;
 width:0;height:0;
 border-color:red transparent transparent;
}

看你的网站兼容性了,碰上IE啥的你就老老实实的用png图片。要不就用楼上的css的方法。

推荐问题
宣传栏