我有一个按钮,我想知道是否可以使 CSS 波纹管更短。
.button a:link, .button a:visited, .button a:hover, .button a:active {
color: #000;
text-decoration: none;
}
我的意思是也许:
.button a:* {
color: #000;
text-decoration: none;
}
也许没有更短的方法,但我只是想知道。我发现了这样的事情:
.button a:link:visited:hover:active {
color: #000;
text-decoration: none;
}
但它不起作用,不知道为什么..有关信息 - 我在文件顶部有一个通用的 css:
a:link {
color: #DA5632;
}
a:visited {
color: #CE3408;
}
a:hover {
color: #289BF8;
}
a:active {
color: #CE3408;
}
所以按钮类 a 应该覆盖主要的 css。