I'd like to select the parent using the following pattern.
I understand I could write this within the parent selector, but I'd like to know if it's possible to prefix the parent's pseudo class to the child from within the child selector.
JSX:
<div class="parent">
<div class="child" />
</div>
<div class="parent">
<div class="child" />
</div>
SCSS:
.parent {
height: 100px;
.child {
// the goal is to write this so it produces the CSS output below, from
// within .child
&:first-child & {
height: 50px;
}
}
}
CSS [output]:
.parent:first-child .child {
height: 50px;
}
So seems like this is really easy. Whoops.
You just do the following:
SCSS:
.child {
.parent:first-child & {
height: 50px;
}
}
This probably looks silly, but for my situation, it's actually useful.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With