0

如果我有以下情况:

  .nav > li.dropdown.open.active > a:hover

我想为带有#futurebutton id 的链接“a”指定相同的内容,这看起来如何?

显然不是?:

 .nav > li.dropdown.open.active > a#futurebutton:hover
4

2 回答 2

4

不。

#futurebutton:hover {
    /* styles */
}

ID 在 DOM 中是唯一的,因此您只需要将 ID 指定为选择器。

于 2012-08-17T19:29:59.487 回答
0

CSS:

#futurebutton:hover{
}

jQuery:

$('#futurebutton').open(yourOpenFunction)
于 2012-08-17T21:58:37.997 回答