最近我在浏览器默认样式中看到了一些CSS选择器:
input[type="hidden" i] {
display: none
}
"我"的意思。
来源:https://chromium.googlesource.com/chromium/blink/+/master/Source/core/css/html.css第412行
答案 0 :(得分:2)
每https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors
在结束括号之前添加i(或I)会使值不区分大小写(对于ASCII范围内的字符)。
因此,此选择器将匹配type="hidden"
,type="HIDDEN"
等