Regexp Match Selector - tomhodgins/process-css-demo GitHub Wiki
This pseudo-class-style selector allows CSS authors to specify a regular expression to match when targeting elements on a page.
<selector>:--regexp-match(<term>) { <list of declarations> }-
<selector>is a CSS selector of tags to consider -
<term>is a string to match in text content of each tag matching the selector
Suppose you had three list items:
<li>Chocolate Truffle
<li>Raspberry Trifle
<li>Chocolate LogYou could write a selector to target anything that looks like Truffle/Trifle with the regex:
li:--regexp-match(Tr[ui]ff?le) {
color: lime;
}