#til

#TIL : CSS Selector element has an attribute which contains some string

[abc*="something"] means select element has attribute abc, and its value contains "something" string

Example :

/* Warning all admin link is red text color */
a[href*="/admin/"] {
	color: red;
}

Enjoyed this post?

If you found this helpful, consider sharing it or leaving a kudo!

0 kudos