Did you know that Google Chrome has a special feature called the shadow descendant combinator /deep/
? This unique combinator allows for the selection of elements within shadow nodes.
body div {...} // this doesn't target descendant divs inside shadow nodes
body /deep/ div {...} // this selects all descendant divs, regardless of being in a shadow node or not
I wonder, is there a similar shadow combinator specifically for selecting children nodes (direct descendants)?