问题描述
我在 div
s 中有一个 div
s 结构,类似于:
<div class='a'>你好</div><div class='a'>堆栈</div><div>溢出</div></div><div>你</div><div class='b'>是</div><div class='b'>最好的</div></div><div>有</div><div class='b'>一个不错的</div><div>日!!</div></div></div>我希望所有具有类 a
的 div
在其中一个被鼠标悬停时更改背景颜色.对于所有具有类 b
的 div
都相同:当悬停具有类 b
的 div
之一时,所有div
s with class b
应该改变背景颜色.
是否有可能实现此行为无需 Javascript?
如果答案是否定的:
如果知道所有具有类 a
的 div
都是连续的 div
是否可能在同一级别(即兄弟姐妹)?
如果需要,我还可以将其他类添加到 div
s.
解决方案 在没有容器 <div>
s 的更简单的情况下,你可以让它工作一半":
<div class='a'>你好</div><div class='a'>堆栈</div><div>溢出</div><div class='b'>是</div><div class='b'>最好的</div><div>有</div><div class='b'>一个不错的</div><div>日!!</div></div>然后你可以使用 通用兄弟组合器, 不幸的是,它仅适用于左侧描述的元素之后的元素.因此,例如,如果您将鼠标悬停在包含The Best"的 <div>
上,那么只有那个和a nice"的 <div>
会发生变化背景:
div.b:hover, div.b:hover ~ div.b {背景颜色:#CCCCCC;}
不过,我无法想出一种仅通过 CSS 来完全处理您的场景的方法.我倾向于其他人所说的现在不可能(即使在简化的情况下).
I have a structure of div
s inside div
s, something like:
<div>
<div>
<div class='a'>Hello</div>
<div class='a'>Stack</div>
<div>Overflow</div>
</div>
<div>
<div>You</div>
<div class='b'>Are</div>
<div class='b'>The Best</div>
</div>
<div>
<div>Have</div>
<div class='b'>a nice</div>
<div>Day !!</div>
</div>
</div>
I would like all div
s with class a
to change the background color when one of them is hovered by mouse. The same for all div
s with class b
: when one of div
s with class b
is hovered, all div
s with class b
should change the background color.
Is that possible to implement this behavior without Javascript ?
If the answer is no:
Is that possible if known that all div
s with class a
are consecutive div
s in the same level (i.e. siblings) ?
I can add also other classes to div
s, if needed.
解决方案 You can get it "half working" in the simpler case where there are no container <div>
s:
<div>
<div class='a'>Hello</div>
<div class='a'>Stack</div>
<div>Overflow</div>
<div class='b'>Are</div>
<div class='b'>The Best</div>
<div>Have</div>
<div class='b'>a nice</div>
<div>Day !!</div>
</div>
Then you could use the general sibling combinator, with the unfortunate caveat that it only works for elements that come after the element described on the left-hand side. So, for example, if you hovered over the <div>
containing "The Best", only that and the "a nice" <div>
would have a changed background:
div.b:hover, div.b:hover ~ div.b {
background-color:#CCCCCC;
}
I wasn't able to come up with a way that would fully take care of your scenario through CSS alone, though. I'm leaning towards what the others have said about it not being possible (even in the simplified case) right now.
这篇关于是否可以根据类名在没有 Javascript 的情况下更改悬停时的多个元素外观?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!
本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!
相关文档推荐
Move link image 5px up on hover(悬停时将链接图像向上移动 5px)
How do I inspect CSS pseudo classes with firebug?(如何使用 firebug 检查 CSS 伪类?)
Why doesn#39;t CSS hover work on table rows when the cells inside the rows have class names?(当行内的单元格具有类名时,为什么 CSS 悬停在表格行上不起作用?)
Hover image - display div over it(悬停图像 - 在其上显示 div)
How to apply a CSS class on hover to dynamically generated submit buttons?(如何在悬停时将 CSS 类应用于动态生成的提交按钮?)
Differences between CSS3 :hover and :focus?(CSS3 :hover 和 :focus 的区别?)
-
• 错误 [ERR_REQUIRE_ESM]:不支持 ES ...
-
• 使用选择器在 CSS 中选择元素的前一...
-
• 为什么 Chrome(在 Electron 内部)会...
-
• 跨域读阻塞 (CORB)...
-
• layui怎么刷新当前页面?...
-
• js报错:Uncaught SyntaxError: Unex...
-
• 类型错误:window.require 不是函数...
-
• node.js安装依赖包 yarn install inf...
-
• 如何在 JS 中获取 CryptoJS.HmacSHA2...
-
• Uncaught (in promise) TypeError: F...
-
• 以编程方式透视 Google 可视化数据表...
-
• Electron:在所有其他窗口之上创建一...
-
• 错误 [ERR_REQUIRE_ESM]:不支持 ES ...
-
• 使用选择器在 CSS 中选择元素的前一...
-
• 为什么 Chrome(在 Electron 内部)会...
-
• 跨域读阻塞 (CORB)...
-
• layui怎么刷新当前页面?...
-
• js报错:Uncaught SyntaxError: Unex...
-
• 类型错误:window.require 不是函数...
-
• node.js安装依赖包 yarn install inf...
-
• 如何在 JS 中获取 CryptoJS.HmacSHA2...
-
• Uncaught (in promise) TypeError: F...
-
• 以编程方式透视 Google 可视化数据表...
-
• Electron:在所有其他窗口之上创建一...