Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我们有这个规则:
.ruleA{ color: black; }
我们如何设置另一条规则
.ruleB{ color: get the color value of ruleA; }
不使用 jquery 是否可能,我的意思是直接使用 css 规则?
不,你不能。如果“div”是嵌套的,您可以使用color:inherit属性。
color:inherit
纯 CSS 是不可能的。研究Less或SASS以获得这种功能。