gpt4 book ai didi

css - `&#my-id` 在 CSS 或 SASS 中是什么意思?

转载 作者:行者123 更新时间:2023-11-28 10:26:15 24 4
gpt4 key购买 nike

我继承了一些 CSS 代码,它在 id 名称之前使用 & 字符来设置样式。它看起来像这样:

&#my-id {
// Content and attributes
}

还有其他的例子,比如:

&:before {
// content and attributes
}

&:hover {
// content and attributes
}

这些是什么意思?我找不到在搜索中表达这一点的好方法,所以我找不到任何东西。如果重复,我深表歉意。

最佳答案

它指的是父选择器。

输入:

.parent {
&.child {
color: red;
}
}

输出:

.parent.child { color: red }

如果您以 BEM 格式编写 CSS,这将非常有用,例如:

.block {
&__element {

width: 100px;
height: 100px;

&--modifier {
width: 200px;
}
}
}

.block__element { width: 100px; height: 100px;}
.block__element--modifier { width: 200px;}

<div class="block__element"></div>
<div class="block__element block__element--modifier"></div>

最后,我分享的所有示例都连接了类名,但您也可以将其用作引用,例如:

.parent {
& .child {
color: red;
}
}

.parent {
.child & {
color: blue;
}
}


.parent .child { color: red }
.child .parent { color: blue }

其他引用资料:

http://lesscss.org/features/#parent-selectors-feature

https://blog.slaks.net/2013-09-29/less-css-secrets-of-the-ampersand/

Using the ampersand (SASS parent selector) inside nested selectors

关于css - `&#my-id` 在 CSS 或 SASS 中是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51792403/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com