I am presenting several boxes with a box class
Check out my CSS below
.box {
width:100%;
min-height:20px;
color:#000000;
font-size:16px;
border:1px solid #666666;
}
.box a {
color:#000000;
font-size:16px;
text-decoration:underline;
}
.box a:hover {
background:#666666;
}
Is there a way to apply a background color to the whole div when hovering?