我有一个下载按钮和一个简单的链接。我设置了下载按钮,其中包含所需的伪类:
a:active
,a:hover
和a:focus
现在其他类链接是什么?
请a:active .newclass
做什么?它没有。
答案 0 :(得分:1)
使用此选项更改CSS选择器
a.newclass:active
否则,您将查找.newClass
类 INSIDE 您的a
标记
答案 1 :(得分:0)
您必须使用正确的CSS选择器。
对于类:active
链接的伪类.newclass
,您应该使用:
a.newclass:active
这会影响任何看起来像这样的链接:
<a href='#' class='newclass'></a>
对于课程.inner
的有效链接中的课程.outer
的链接,您应该使用:
a.outer:active .inner
这会影响任何看起来像这样的链接:
<a href='#' class='outer'>
<a href='#' class='inner'></a>
</a>