CSS类名选择器能不能通过类名的一部分来选择?

2024-12-29 15:25:32
推荐回答(1个)
回答1:

可以使用属性选择器的部分匹配功能来实现:

[class^="re_"] {
background-color: blue;
}

[abc^="def"]    

选择 abc 属性值以 "def" 开头的所有元素    

[abc$="def"]    

选择 abc 属性值以 "def" 结尾的所有元素    

[abc*="def"]    

选择 abc 属性值中包含子串 "def" 的所有元素