[Css]父元素监听鼠标移入子元素
[Css]父元素监听鼠标移入子元素
目标需求
- 鼠标移入父元素,父元素发生变化
- 鼠标移入子元素,子元素发生变化,父元素回到初始状态
解决方案
- 通过
:has
进行判断
实现示例
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>hover变色效果</title>
<style>
.father {
width: 300px;
height: 300px;
background: red;
}
.father:hover {
background: blue;
}
.child {
width: 160px;
height: 160px;
background: green;
}
.child:hover {
background: blue;
}
.father:has(.child:hover) {
background: red;
}
</style>
</head>
<body>
<div class="father">
<div class="child"></div>
</div>
</body>
</html>
实现效果
-
初始
-
移入父元素
-
移入子元素