[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;
}
[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;
}
Sound good ?
0 kudos, click the star if you think this post is value !
Read more
about #til