Looking for a way to style multiple customized HTML tags (Angular.js directives) that share the same suffix?
Imagine you have three modal tags that you want to style similarly:
1. <a-modal>
2. <b-modal>
3. <c-modal>
Is there a selector that can be applied to all three without needing them to have a common attribute?
// Attempt with wildcard - does not work
[*-modal] {
//style...
}
// Would work with attributes:
div[modal="true"] {
//style...
}