gpt4 book ai didi

html - 分区 :hover changes attributes of another DIV

转载 作者:太空宇宙 更新时间:2023-11-03 21:55:01 26 4
gpt4 key购买 nike

我正在尝试从另一个 div 的悬停更改一个 div 的属性。这两个 div 都有自己唯一的 ID,我想知道这是否可能。

这是 jsfiddle 链接: http://jsfiddle.net/Ngx5D/

这里是示例代码:

body {
background-color:lightgrey;
}

#div_one, #div_two{
background-color:darkred;
display:block;
width:300px;
text-align:center;
padding:30px;
margin:10px;
color:white;
-webkit-transition: 0.3s ease;
-moz-transition: 0.3s ease;
-ms-transition: 0.3s ease;
-o-transition: 0.3s ease;
transition: 0.3s ease;
}

#div_one:hover {
background-color:red;
}

最佳答案

这样写:

#div_one:hover + #div_two{
background-color:red;
}

检查这个http://jsfiddle.net/Ngx5D/1/

关于html - 分区 :hover changes attributes of another DIV,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14539482/

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