Is there a way to select an element by name in CSS using a wildcard?
For example, with these elements:
<my-element-one></my-element-one>
<my-element-two></my-element-two>
<div></div>
Could I only select every one starting with 'my-element'? For example like this:
my-element-* {color: red;}