我想更改某个类的锚标签的颜色,但前提是它们没有悬停。同一类的悬停锚点应该保留未分类锚点的颜色(无论其他样式表对它们做了什么)。
例如,给定:
a {color: [unknown color];} /* set elsewhere, out of my control */
a.incognito {color:inherit} /* the text color, typically black */
a.incognito:hover {color: [what?];} /* the color of a non-incognito anchor */
是否有纯 CSS解决方案让悬停的链接不使用同一类的未悬停链接的颜色样式?