gpt4 book ai didi

html - 当 parent 悬停时, child 会发生变化

转载 作者:搜寻专家 更新时间:2023-10-31 23:06:18 24 4
gpt4 key购买 nike

我试图让子元素在父元素悬停时发生变化。我还希望该父项的属性也发生变化。我正在尝试让 #action 的背景颜色发生变化,并且 ah1 的颜色在 action< 时发生变化 悬停在上面。这可能吗?

这是html

<section id="action" class="general">
<div class="container">
<a href="#"><h1>This text</h1></a>
</div>
</section>

这是CSS。 CSS 是使用 SASS 构建的,这就是它采用这种结构的原因。

#action {
background-color: $bgLight;
border-top: 1px solid #252525;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;

a {
text-decoration: none;

h1 {
margin: 0;
color: $colorLight;
font-weight: 300;
text-align: center;
}
}
}

#action:hover a {
background-color: #76A7D1;
color: $colorDark;
}

最佳答案

试试这个:

#action {
background-color: $bgLight;
border-top: 1px solid #252525;
-webkit-transition: all 0.2s ease-out;
-moz-transition: all 0.2s ease-out;
-ms-transition: all 0.2s ease-out;
-o-transition: all 0.2s ease-out;
transition: all 0.2s ease-out;

a {
text-decoration: none;

h1 {
margin: 0;
color: $colorLight;
font-weight: 300;
text-align: center;
}
}
}

#action:hover{
background-color: #76A7D1;
a{
h1{
color: $colorDark;
}
}
}

关于html - 当 parent 悬停时, child 会发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17262865/

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