您的当前位置:首页>全部文章>文章详情

鼠标进入父元素,改变子元素样式

发表于:2023-09-06 14:00:37浏览:88次TAG: #CSS
<div class="a">
    <div class="b"></div>
</div>
.a{
    width:300px;
    height:300px;
    background-color:red;
}

.b{
    width:200px;
    height:200px;
    background-color:blue;
}

.a:hover .b{
    background-color:green;
}