0
点赞
收藏
分享

微信扫一扫

css添加三角指示器

Python芸芸 2024-01-16 阅读 15

css添加三角指示器_系统

.bar{
  ...
     &:before {
        top: 100%;
        left: 24px;
        border: solid rgba(0, 0, 0, 0);
        content: '';
        height: 0;
        width: 0;
        position: absolute;
        border-top-color: rgba(68, 65, 65, 0.84);
        border-width: 5px;
        margin-left: -5px;
      }
}



举报

相关推荐

0 条评论