so I am looking for a way to apply CSS style to an element when another is being hovered.
To illustrate better, then here's an example:
Html:
<body>
<p>Click me</p>
</body>
Css:
p:hover{
background-color: red;
}
So essentially I want the body to have the background color of red whenever the p is being hovered.