gpt4 book ai didi

CSS3 : how to correctly use :hover to modify other elements' styles?

转载 作者:太空宇宙 更新时间:2023-11-03 20:30:24 25 4
gpt4 key购买 nike

我对使用伪类 :hover 感到困惑。

在下面的 HTML 中,:hoverul 元素按预期工作,但对 div 元素无效:

<!DOCTYPE html>
<html>
<head>
<meta charset:"utf-8" />
<style>

#div1:hover #div2 {
color: green;
}

#ul2 {
display: none;
}

#ul1:hover #ul {
display:block;
}

</style>
</head>

<body>
<div id='div1'>
If I hover this, then the next div should change color to green...
</div>

<div id='div2'>
But it doesn't change colors!
</div>

<ul id='ul1'>
<li>If I hover this, then ul2 shows up</li>
<ul id='ul2'>
<li>We're showing up!</li>
<li>We're showing up!</li>
</ul>
<li>etc.</li>
</ul>

</body>
</html>

#div2 只会在我将此行 #div1:hover #div2 { 更改为 #div1:hover + #div2 {(注意加号“+”)。我不明白,为什么需要“+”?在这个question ,代码甚至使用 nav ul li:hover > ul> 有什么用?

总结我的问题:使 :hover 改变 CSS 中另一个元素的样式的规则是什么?

最佳答案

I don't understand, why is the "+" needed?

+代表相邻的兄弟选择器,当目标元素是直接兄弟元素时使用它,与子元素相反

在这里阅读更多:https://developer.mozilla.org/en-US/docs/Web/CSS/Adjacent_sibling_selectors

What is the > for?

>代表子选择器,仅针对直接子选择器

在这里阅读更多:https://developer.mozilla.org/en/docs/Web/CSS/Child_selectors


附带说明,ul 是无效的(在本例中为 <ul id='ul2'> )作为另一个 ul 的直接子代, 里面的应该包裹在 li

关于CSS3 : how to correctly use :hover to modify other elements' styles?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43387477/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com