Is there a way to change the background color of the body tag when hovering over a list item?
Is there a way to change the background color of the body tag when hovering over a list item?
I would like to acieve this using html and css only. No javascript
this is the code I'm using in CSS:
ul li:hover:nth-child(1) a
{
body
{
background-color: #009688;
}
}
the above code just changes the li color. I've also tried the 'background' attribute and it doesnt work?
Keith
