css代码:
&.selected{
color: @theme;
border: 0.02rem solid @theme;
position: relative;
transition: all 0.5s ease;
}
&.selected::after {
content: '✔';
display: block;
height: 0px;
width: 0px;
position: absolute;
bottom: 0;
right: 0;
color:#fff;
/**对号大小*/
font-size: 10px;
line-height: 8px;
border: 10px solid;
border-color: transparent #4884ff #4884ff transparent;
}
效果:
解析:
1、利用伪元素选择器,来增加内容。
2、利用较宽的border实现√号的背景效果
3、利用透明border去掉多余背景色。
4、利用子绝父相定位,将√号定位到合适位置。