cun*_*fox 17 css css-reset hyperlink hover background-color
我已经创建了一个CSS类.press-title,但是我无法删除悬停时应用的背景颜色.
.press-title a:hover { background-color: none; text-decoration: none;}
Run Code Online (Sandbox Code Playgroud)
想法?
链接位于页面底部:
http://domdemarcos.com/typography/
编辑以反映回复所做的更改.
Rob*_*ett 25
尝试
.press-title a:hover { background-color: transparent; text-decoration: none; }
Run Code Online (Sandbox Code Playgroud)
您的选择器无效。Firefox 抛出此消息:Expected identifier for pseudo-class or pseudo-element but found ' '. Ruleset ignored due to bad selector.
它应该是:
.press-title a:hover
Run Code Online (Sandbox Code Playgroud)