SASS 获取上一级的选择器 & { } 如何写

发布于 2022-08-24 09:31:36 字数 637 浏览 10 评论 0

在SASS的介绍文档里,有下面这段代码:

button {
  background: linear-gradient(#444,#222);
  .no-cssgradients & { background: #333 }
}

编译成CSS后是这样的:

button {
  background: linear-gradient(#444, #222);
}

/* 注意看下面这行 */
.no-cssgradients button {
  background: #333
}

但是,当有多个层级的选择器后,他将始终获得最顶层的选择器

form {
  button {
    background: linear-gradient(#444,#222);
    .no-cssgradients & { background: #333 }  // 问题在这行
  }
}

如此,我期望编译后.no-cssgradients的顺序是这样的:

form .no-cssgradients button

但他的顺序却是这样的:

.no-cssgradients form button

是我对 & { } 选择理解有误,还是说我的写法有问题?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

吻安 2022-08-31 09:31:36

既然你的结构是form>.no-css>button
为什么却在SCSS里用button包住.no-css呢?

form {
  button { background: linear-gradient(#444,#222);  }
  .no-css{ background: #333; 
    button {@extend .no-css}
  }
}

=====>

form button {
  background: linear-gradient(#444444, #222222); }
form .no-css, form .no-css button {
  background: #333; }

.

囍笑 2022-08-31 09:31:36

跟据 SCSS 官方的 Reference 来看,结果却是如此:

& will be replaced with the parent selector as it appears in the CSS. This means that if you have a deeply nested rule, the parent selector will be fully resolved before the & is replaced.

所以我们可以改写一下:

form {
  &.no-cssgradients { 
    button {
      background: #333;
    }
  }

  button {
    background: linear-gradient(#444,#222);
  }
}
并安 2022-08-31 09:31:36

实现你需要的效果,可以考虑下面的两种写法:

form {
    button {
        background: linear-gradient(#444,#222);
    }
    @at-root #{&} .no-cssgradients  {
        button {
            background:#333;
        }
    }
}

或者:

form {
    button {
        background: linear-gradient(#444,#222);
    }
    .no-cssgradients {
        button {
            background:#333;
        }
    }
}

这两种方法转译出来都是:

form button {
  background: linear-gradient(#444444, #222222); }
form .no-cssgradients button {
  background: #333; }

假设置@at-root到时和&具有相同的机制,那么实现你要的功能就方便多了。

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文