我想创建一个sass文件,选择器将成为属性选择器。
当我使用类选择器时,在大多数情况下我会做
.parent {
&-child {
}
}
给了我以下css:.parent-child {}
。
我想用属性选择器实现同样的目的:
[data-parent] {
&-child {
}
}
我想成为:[data-parent-child] {}
答案 0 :(得分:3)
您可以使用此mixin
作为解决方法来获得所需的结果。
@mixin child-attribute($child) {
$string: inspect(&);
$original: str-slice($string, 3, -4);
@at-root #{ selector-replace(&, &, "[#{$original}#{$child}]" ) } {
@content;
}
}
代码只执行以下操作
inspect
函数将父选择器转换为字符串$string
变量的 text 内容,即来自'data-parent'
<的值'([data-parent])'
/ LI>
$original
变量和child
变量以下列方式使用时
[data-parent] {
@include child-attribute('-child') {
color: green;
}
}
css输出
[data-parent-child] {
color: green;
}
根据您想要实现的目标,也可以像这样使用
[grandparent] {
@include child-attribute('-parent') {
color: white;
@include child-attribute('-child') {
color: blue;
}
}
}
生成以下css
[grandparent-parent] {
color: white;
}
[grandparent-parent-child] {
color: blue;
}
希望这有助于你
答案 1 :(得分:-1)
您可以创建mixin
,为具有数据属性的元素设置样式。
SCSS:
@mixin data($name) {
[data-#{$name}] {
@content;
}
}
* {
@include data('lol') {
color: red;
};
}
Css输出:
* [data-lol] {
color: red;
}
<强> DEMO 强>
答案 2 :(得分:-1)
我会在包含class
属性的元素上使用data
略有不同。
<div class="data-obj" data-parent="true"></div>
<div class="data-obj" data-parent-child="true"></div>
然后在你的SASS做
.data-obj {
...
&[data-parent] { ... }
&[data-parent-child] { ... }
}