http://dev.w3.org/csswg/selectors4/

A! > B

A nested list of DIV-s, the ones containing grand-children having a border.

div! > div > div {
    border: 4px solid red;
}
When hovering a grand-child, the grand-parent div shows a message in yellow.
div:after! > div > div:hover{
    display:block;
    content: "Too many nested DIVs.";
    background-color:yellow;
    padding:1em;
}
1
1.1
Nested 1
Nested 2
1.2
1.3
2
3.1
3.2
3.3