Feeling a bit lost on where to start with this issue. My divs are positioned as desired on the page.
Just to clarify, I am utilizing CSS Grids for this.
In short, all I'm wondering is if it's possible to change the background of the body element when hovering over a specific div on the page?
I've set up a Fiddle to help illustrate the problem.
Fiddle: https://jsfiddle.net/bqnw4qyb/
Initially, I thought that this CSS code could work:
.div:hover {
body {
background-color: red;
}
}
Unfortunately, it seems like this approach doesn't produce the desired result.
Any ideas or suggestions on how to achieve this?