如果将鼠标悬停在任一 div 上,则使两个相邻 div 一起翻转
我创建了一个 DIV,里面有两个 DIV;带有翻转图像的 DIV 和其下方带有文本和正常翻转行为的 DIV。
它们的文字描述了图像,并且它们都是指向同一位置的链接,因此我希望当鼠标悬停在任一图像上时它们都一起滚动。
谁能告诉我如何只用 CSS 做到这一点?
非常感谢!
I have created a DIV with two DIV's inside it; A DIV with a rollover image and A DIV below it with text and normal rollover behaviors.
They text describes the image and they are both links to the same place so I want them to both rollover together when the mouse is hovering over either one.
Can anyone tell me how I could do that with just CSS?
Much thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将
:hover
放在外部上,然后使用它来影响内部
上的翻转。例如:
和一些CSS:
和一个例子: http://jsfiddle.net/ambigously/3bXhA/
You could put the
:hover
on the outer<div>
and then use that to effect the rollovers on the inner<div>
s. For example:And some CSS:
And an example: http://jsfiddle.net/ambiguous/3bXhA/