0

I am trying to hover on a link to change the image in div using Adjacent Sibling Selector, but it does not show anything when I hover on the link.

<!DOCTYPE HTML>
<html>
<head>

<link rel="stylesheet" href="styletest.css">    
</head>
<body>
<div>

    <a class="a" href="/template-1978944/editor"> ANATOMY NOW
    </a>

    <div class="bg"> </div>

</div>   
</body>
</html>

CSS:

.bg{
 height:100%;
}

.a:hover + .bg {
 background-image: url('https://preview.ibb.co/gce5me/anatomy_Now.png');
}
bloobit
  • 101
  • 5

1 Answers1

1

You can also use height:100vh;if you need to fill the background of the viewport

mkk
  • 56
  • 5