我有一个 CSS 规则:
.k-grid, .k-grid * { border: 0 !important; }
但这适用于容器中的所有内容,包括input
元素。
有没有办法编辑该 CSS 以添加“not”子句来排除输入?其他一切都需要关闭边界。
根据这篇 MDN 文章:https ://developer.mozilla.org/en-US/docs/Web/CSS/:not ,您似乎可以这样做.k-grid *:not(input)
。
您:not(input)
在 css 中有选择器来排除特定元素。
.k-grid, .k-grid *:not(input)