You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//selects the elements descendants of container nested at the 5th level
root container 4(*) element { }
//would be equivalent to
root container * * * * element { }
Should we allow a selector chain inside the parentheses?
root container 4(test1 test2) element { }
//would be equivalent to
root container test1 test2 test1 test2 test1 test2 test1 test2 element { }
FYI the other 2 modifiers ($ and !) only accept simple selectors.
The text was updated successfully, but these errors were encountered:
Should we allow a selector chain inside the parentheses?
FYI the other 2 modifiers ($ and !) only accept simple selectors.
The text was updated successfully, but these errors were encountered: