Is it possible to use a "wildcard" for elements having a class name starting with a specific string in CSS3?
Example:
<div class="myclass-one"></div>
<div class="myclass-two"></div>
<div class="myclass-three"></div>
and then magically set all the above divs to red in one go:
.myclass* { color: #f00; }
[class^='myclass-'], [class*=' myclass-'] { color: red }[^="start"] [*="contain"] [$="ends"]( ^ * $ rules are from Regular expressions )