Syntax
- NodeClass /* selector by Node's class */
- .someclass /* selector by class */
- #someId /* selector by id */
- [selector1] > [selector2] /* selector for a direct child of a node matching selector1 that matches selector2 */
- [selector1] [selector2] /* selector for a descendant of a node matching selector1 that matches selector2 */