My SCSS looks like this:
.wrapper {
.part {
...
&.wheel {
... // code goes here
}
}
}
And my html looks like this:
<div class="wrapper">
<img src="..." class="part wheel"/>
<img src="..." class="part wheel"/>
</div>
How can I select first and second wheel
using CSS? I want to give them different properties.