I saw the following CSS code with what appears to be a triple greater than selector.
.b-table >>> .table-wrapper {
overflow-x: auto;
}
I know it's referencing a Buefy table component and applying a specific style to elements that have a table-wrapper
class, but what does the >>>
operator mean exactly? Based off this answer I'm thinking it might be for applying styles to children of children of children, is that accurate? If so, why doesn't it seem to work with other amounts of >
?
::ng-deep
– Jorrie