有没有可能减少这些CSS类?
body.bank #page_content input,
body.bank #page_content textarea,
body.bank #page_content .inp-checkbox,
.list-tr.bank input,
.list-tr.bank textarea,
.list-tr.bank .inp-checkbox,
body.creditor #page_content input,
body.creditor #page_content textarea,
body.creditor #page_content .inp-checkbox,
.list-tr.creditor input,
.list-tr.creditor textarea,
.list-tr.creditor .inp-checkbox,
body.debtor #page_content input,
body.debtor #page_content textarea,
body.debtor #page_content .inp-checkbox,
.list-tr.debtor input,
.list-tr.debtor textarea,
.list-tr.debtor .inp-checkbox{
--opacity-border:35%;
}
3条答案
按热度按时间gcuhipw91#
使用
:where
或:is
伪类。sd2nnvve2#
就
body.bank
而言,为什么不简单地使用.bank
类呢?.list-tr
也是如此。而且看起来#page_content
可以用HTMLmain
元素替换。jq6vz3qz3#
您可以查看具有选择器https://developer.mozilla.org/en-US/docs/Web/CSS/:has