[Solved -6 Answers] CSS – HTML – wildcard * in CSS for classes
We have these divs that styling with .tocolor, but we also need the unique identifier 1,2,3,4 etc. so we are adding that it as another class tocolor-1.
In the place of div you can add any element or remove it altogether, and in the place of class you can add any attribute of the specified element.
CSS code
[class^="tocolor-"] — starts with "tocolor-".
[class*=" tocolor-"] — contains the substring "tocolor-" occurring directly after a space character.
[ad type=”banner”]
You can use this.
css code
*[id^='term-']{
[css here]
}
This will select all ids that start with ‘term-‘.
An alternative solution:
CSS code
div[class|='tocolor'] will match for values of the "class" attribute that begin with "tocolor-", including "tocolor-1","tocolor-2", etc.
[att|=val]
Represents an element with the att attribute, its value either being exactly “val” or beginning with “val” immediately followed by “-” (U+002D)
If you don’t need the unique identifier for further styling of the divs and are using HTML5 you could try and go with custom Data Attributes.
Try a google search for HTML5 Custom Data Attributes
[ad type=”banner”]
HTML – for CSS Wildcard :
html code
<divclass="mark-as-unread otherClass"> Book 1 </div><divclass="mark-as-reading otherClass"> Book 2 </div><divclass="mark-as-read otherClass"> Book 3 </div><divclass="mark-as-not-interested otherClass"> Book 4 </div><divclass="mark-as-unread otherClass"> Book 1 </div><divclass="mark-as-reading otherClass"> Book 2 </div><divclass="mark-as-read otherClass"> Book 3 </div><divclass="mark-as-not-interested otherClass"> Book 4 </div>
* – will match any part of the attribute value to the given string
^ – will match if the attribute begins with the given string (think class prefixes)
$ – matches if the attribute ends with the given string
Note :in the second selector, there’s an extra whitespace before “mike” which accounts for IE’s handling of having multiple classes (e.g. class=”mikebox mike-1″).
Wikitechy Founder, Author, International Speaker, and Job Consultant. My role as the CEO of Wikitechy, I help businesses build their next generation digital platforms and help with their product innovation and growth strategy. I'm a frequent speaker at tech conferences and events.