伪类 :after 设置无效,求问原因

准备给树状组件增加层级分割线,需要用伪类设置样式,但是无效。
代码如下:

#tree-wrap {  .el-tree-node.is-expanded {    position: relative;
    >.el-tree-node__children::after{      content: '';      position: absolute;      top: 25px;      bottom: 0;      left: 40px;      height: calc(100% - 50px);      border-left: 1px dashed #666;
    }
  }
}

但是在DOM里没有看到对应的 ::after,

https://img2.mukewang.com/5b5d62610001a9ce04280307.jpg

求问原因。

米脂
浏览 2485回答 2
2回答

慕田峪4524236

你觉得你截的图能看出来啥,截图截这么窄,咋,怕挤到啊你的after是在children上加的,你找的位置是哪,是children的父元素;after伪元素全在children里面好么
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript