Without a combined child selector, you are likely to do something similar to this:
foo { bar { baz { color: red; } } }
If you want to reproduce the same syntax with > , you could:
foo { > bar { > baz { color: red; } } }
This compiles as follows:
foo > bar > baz { color: red; }
Or in sass:
foo > bar > baz color: red
arnaud576875 08 Sep 2018-11-11T00: 00Z
source share