Is there a way to style specific tags in CSS?
<style type="text/css">
[attribute*="test"] {
background-color: red;
}
</style>
However, this method does not seem to work for the following tags:
<test-1>
</test-1>
<test-2>
</test-2>
<test-3>
</test-3>