黑松山资源网 Design By www.paidiu.com

推荐文章:

css伪类 右下角点击出现 对号角标表示选中的示例代码 :https://www.jb51.net/css/731762.html

效果

纯CSS实现选中商品后右下角显示√号功能

解析:

1、利用伪元素选择器,来增加内容。
2、利用较宽的border实现√号的背景效果
3、利用透明border去掉多余背景色。
4、利用子绝父相定位,将√号定位到合适位置。

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;
            }

总结

黑松山资源网 Design By www.paidiu.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
黑松山资源网 Design By www.paidiu.com