0
点赞
收藏
分享

微信扫一扫

css伪类元素 添加 选中下划线 自定义长度

小迁不秃头 2022-02-10 阅读 124

        .actived::after {

          content: '';

          position: absolute;

          width: rem(49); // 边框的宽度

          height: rem(6);

          border-radius: rem(3);

          left: 50%; //距离 view 标签的距离

          bottom: rem(-8);

          background-color: #ff4019; //  颜色

          transform: translateX(-50%);

        }

   

举报

相关推荐

0 条评论