Re: Proposal

There are things you can express with 'anyof' but not the comma, such as:

    #sidebox :anyof(div > div, span > div) {
        color: blue;
    }

which means "any DIV which is a child of another DIV or a SPAN and contained 
in #sidebox". Though if you add :matches into the mix, you can split into 
"#sidebox :matches(div>div), #sidebox :matches(span>div)". 

Received on Thursday, 7 March 2013 17:17:14 UTC