til

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

I learned on 2023-08-21 about css, js, web

[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?

Leave a kudo — it means a lot.

0