美文网首页
at-rule or selector expected

at-rule or selector expected

作者: 柒秒时光 | 来源:发表于2020-06-24 10:35 被阅读0次

在使用样式穿透后可能会遇见at-rule or selector expected提示,虽然对界面是没有什么影响,但是看着总觉得不舒服,那如何解决呢?

这样写提示at-rule or selector expected

>>> .van-tabs__content {
  padding-bottom: 133px;
  height: 100%;
}

解决办法(加上父级)

.van-tabs >>> .van-tabs__content {
  padding-bottom: 133px;
  height: 100%;
}

ps:如果对你有帮助,点个小心心吧♥

相关文章

网友评论

      本文标题:at-rule or selector expected

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