親がホバーされたときに子要素を変更しようとしています。また、その親の属性も変更してほしいです。の背景色を変更し、ホバーしたときにまたは#action
の色を変更しようとしています。これは可能ですか?a
h1
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;
}