首先这个思路的讲解 就是用到了 border 边框这个属性 一个div 可以设置四边边框 我们先把其他三条边都去掉 只留下一个边框 其他 在设置底边框的宽度 再把内容区域设置为0 就可以了
下面是代码
html
<div></div>
css
div {
width:0;
height:0;
border-top:30px solid red ;
border-left:30px solid transparent;
border-right:30px solid transparent;
}
/*左侧三角形 */
div {
width:0;
height:0;
border-top:30px solid transparent;
border-left:30px solid red;
border-bottom:30px solid transparent;
}
/右侧三角形/
div {
width:0;
height:0;
border-right:30px solid red;
border-bottom:30px solid transparent;
border-top:30px solid transparent;
}
/底部正三角形/
div {
width:0;
height:0;
border-bottom:30px solid red;
border-left:30px solid transparent;
border-right:30px solid transparent;
}
我加的边框颜色是透明 transparent;
那个给transparent属性就说明他所在的位置要变成透明(隐藏起来),这时只会显示不透明的部分