RE: [css-selectors] Proposal: Logical Combinators / Sets

You seem to miss that you can't do :not() on complex selectors, and the same goes for the AND juxtaposition.


.list .item:any-of(  .start,  :all-of(.start ~ *, :not(.end ~ *))   ) {

   // I'm a visible item because I'm between the start and the end item.

} 		 	   		  

Received on Friday, 5 April 2013 16:18:21 UTC