I need to change the button color and text color on hover on the parent div.
I am getting the output and on hover, I have to change the color.
Would you help me out?
.Set {
background-color: #fff;
padding: 35px;
box-sizing: border-box;
min-height: 450px;
z-index: 2;
position: relative;
width: 300px;
border: 1px solid #ccc;
}
.btn {
padding: 10px 30px;
font-size: 16px;
}
.btn_bg {
background-color: #000;
color: #fff;
}
.Set:hover {
background-color: #000;
}
<div class="Set">
<h2 class="textMe">adasdsad asdas d</h2>
<div class="bigtextMe">
<p>asdsa asdsd asd asd sd sd sd </p>
<a href="" class="btn btn_bg">njkndkajnsdkja</a>
</div>