通过使用CSS悬停另一个元素来更改元素。
我不知道语法。有什么想法吗?
我希望通过悬停.frame
来更改.app > a
。 CSS语法如下所示:
.app a:hover ->¹ .frame {
background-color: yellow;
}
.frame {
background-color: blue;
width: 300px;
height: 300px;
}
¹只是插图。
答案 0 :(得分:3)
尝试使用此尺寸:
.app:hover ~ .frame {
background-color: yellow;
}
.frame {
background-color: blue;
width: 300px;
height: 300px;
}
演示:http://jsfiddle.net/maniator/jWA3s/1/
参考:What does the "~" (tilde/squiggle/twiddle) CSS selector mean?