下
.box{
width: 200px;
height: 40px;
background-color:red;
margin: 0 auto;
}
.box:after{
position: relative;
top: 48px;
content: '';
border-top: 10px solid red;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}
上
.box{
width: 200px;
height: 40px;
background-color:red;
margin: 0 auto;
}
.box:after{
position: relative;
top: -26px;
content: '';
border-bottom: 10px solid red;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
}
右
.box{
width: 200px;
height: 40px;
background-color:red;
margin: 0 auto;
position: relative;
}
.box:after{
position: absolute;
top: 10px;
right: -10px;
content: '';
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-left: 10px solid red;
}
左
.box{
width: 200px;
height: 40px;
background-color:red;
margin: 0 auto;
position: relative;
}
.box:after{
position: absolute;
top: 10px;
left: -10px;
content: '';
border-top: 10px solid transparent;
border-bottom: 10px solid transparent;
border-right: 10px solid red;
}