收藏
回答

是不支持 css 中::after 伪类 content通过attr函数动态获取内容吗?

<view class="viewBox" abc="123"></view>
css
.viewBox {
    max-width100%;
    min-height400rpx;
    display: block;
    position: relative;
    background-color#000;
}
.viewBox::after{
    content:attr(abc);
    color:#fff;
    font-size26rpx;
    background-color: rgba(333,0.5);
    position: absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index1;
}
回答关注问题邀请回答
收藏

1 个回答

  • 0
    0
    03-13

    支持的 我这样写是可以的

    03-13
    有用 1
    回复 1
    • 圆滚滚
      圆滚滚
      发表于移动端
      03-13
      好的,谢谢
      03-13
      回复
登录 后发表内容