
本文内容收集来自网络
#triangle-up {
width:;
height:;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-bottom: 100px solid red;
}
#triangle-down {
width:;
height:;
border-left: 50px solid transparent;
border-right: 50px solid transparent;
border-top: 100px solid red;
}
#triangle-left {
width:;
height:;
border-top: 50px solid transparent;
border-right: 100px solid red;
border-bottom: 50px solid transparent;
}
#triangle-right {
width:;
height:;
border-top: 50px solid transparent;
border-left: 100px solid red;
border-bottom: 50px solid transparent;
}
#triangle-topleft {
width:;
height:;
border-top: 100px solid red;
border-right: 100px solid transparent;
}
#triangle-topright {
width:;
height:;
border-top: 100px solid red;
border-left: 100px solid transparent;
}
#triangle-bottomleft {
width:;
height:;
border-bottom: 100px solid red;
border-right: 100px solid transparent;
}
#triangle-bottomright {
width:;
height:;
border-bottom: 100px solid red;
border-left: 100px solid transparent;
}
<!-- 外框 -->
<div class="mod-container">
<!-- 小三角部分 -->
<div class="mod-triangle">
<div class="t-border"></div>
<div class="t-inset"></div>
</div>
</div>
/*外框容器*/
.mod-container {
width:100px;
height:60px;
border:1px solid #000;
margin:20px;
background:#fff;
}
/*小三角部分*/
.mod-triangle {
display:block;
position:relative;
left:-23px;
top:18px;
z-index:;
}
.mod-triangle .t-border,
.mod-triangle .t-inset{
left:0px;
top:0px;
width:;
height:;
font-size:;
overflow:hidden;
position:absolute;
border-width:12px;
/*可在此处更改小三角方向:上-右-下-左(solid的位置)*/
border-style:dashed solid dashed dashed;
}
/*小三角的边框,如果不需要,可将颜色值改变*/
.mod-triangle .t-border{
border-color:transparent #000 transparent transparent;
left:-1px;
}
.mod-triangle .t-inset{
border-color: transparent #fff transparent transparent;
}