美文网首页
微信小程序 子元素选择器的相关问题

微信小程序 子元素选择器的相关问题

作者: 克洛斯贝尔 | 来源:发表于2021-03-08 17:45 被阅读0次

    微信小程序不支持*选择器

    [style*="--aspect-ratio"]>:first-child {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            margin: auto;
    }
    

    编译会报错

    [style*="--aspect-ratio"]>*:first-child {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            margin: auto;
    }
    

    编译成功,但无效

    解决方案

    [style*="--aspect-ratio"]>view:first-child {
            position: absolute;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            margin: auto;
    }
    

    如果第一项为非view标签则自己补充

    相关文章

      网友评论

          本文标题:微信小程序 子元素选择器的相关问题

          本文链接:https://www.haomeiwen.com/subject/mntmqltx.html