How to activate link and div element at the same time?
When I hover over the div element, only it lights up, the link does not.
Is there a way to make the button brighter as a whole, instead of brightening the button background first and then the link.
a: visited {
white color
}
a:hover:visited{
Color: RGB(180, 179, 179);
}
a link {
white color;
Background color: rgb(180, 179, 179);
}
a:hover {
Color: RGB(180, 179, 179);
Background color: white
}
div.b{
white color;
Background color: rgb(180, 179, 179);
}
div.b:hover{
Color: RGB(180, 179, 179);
Background color: white
}
a:link { text decoration: none; }
a:visited { text decoration: none; }
a:hover { text decoration: none; }
a:active { text decoration: none; }
I tried everything I know