Experimental column (||), descendant (>>) and deep (>>> or /deep/) combinators should not be used in production code.

Noncompliant Code Example

div >> p {
}

col.selected || td {
}

foo /deep/ p {
}

foo >>> p {
}

See