我知道如何设置不同状态的颜色,但我想知道代码只是保留文本颜色(以及任何其他样式/格式).
有什么建议么?
a { color: blue; text-decoration: none; /* no underline */ }
如果要使用父样式中的属性,也可以使用inherit值:
body { color: blue; } a { color: inherit; /* blue colors for links too */ text-decoration: inherit; /* no underline */ }