Select 签入子项时的父选择器 SCSS/SASS
Select parent selector when child is checked in SCSS/SASS
大家好,我有一个新手问题,但找不到解决方法:
.parent {
justify-content:left;
.child__checkbox {
// properties
&:checked {
justify-content:right;
}
}
选中.child__checkbox
后,.parent
属性应该从justify-content:left
变为justify-content:right
而不影响.child__checkbox
的属性.
你是怎么做到的?
在这种情况下,javascript 会更合适,因为到目前为止我们还没有办法影响像这样适用于所有浏览器的父元素。
大家好,我有一个新手问题,但找不到解决方法:
.parent {
justify-content:left;
.child__checkbox {
// properties
&:checked {
justify-content:right;
}
}
选中.child__checkbox
后,.parent
属性应该从justify-content:left
变为justify-content:right
而不影响.child__checkbox
的属性.
你是怎么做到的?
在这种情况下,javascript 会更合适,因为到目前为止我们还没有办法影响像这样适用于所有浏览器的父元素。