Thursday, January 15, 2015

Combine CSS Attribute Selectors



is there a way to combine CSS2 Attribute Selectors like tr[id^="foo" AND id$="bar"]
so it selects all <tr id="foo_something_bar"> 
but not <tr id="foo_something"> or <tr id="something_bar">



tr[id^="foo"][id$="bar"]

No comments:

Post a Comment