双重定位小图标的实现_ico

<i class=" icon" v-show="items.isDefault==1"></i>//三角图标
<i class="el-icon-check dui"  v-show="items.isDefault==1"></i> //一个符号
.icon{
  position: absolute;
  bottom:-2px;
  right: -2px;
  width: 0;
  height: 0;
  color:#fff;
  border-style: solid;
  border-color:transparent #ff7800
transparent transparent;
  border-width:55px 55px 0 0
}
.dui{
  position: absolute;
  bottom:0px;
  right: 0px;
  color:#fff;
  font-size: 30px;
}