Horje
css id with mask wildcard Code Example
css id with mask wildcard
*[id^='term-']{
    [css here]
}

div[class^="tocolor-"], div[class*=" tocolor-"] {
    [css here]
}

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.

[class^="tocolor-"] — starts with "tocolor-".
[class*=" tocolor-"] — contains the substring "tocolor-" occurring directly after a space character.




Css

Related
cd cover dimensions Code Example cd cover dimensions Code Example
nuxt lazy load pages pagination Code Example nuxt lazy load pages pagination Code Example
angular scss doesn't work backgorund Code Example angular scss doesn't work backgorund Code Example
siteorigin hide row Code Example siteorigin hide row Code Example
crypto module Code Example crypto module Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10