div hover background-color change?
.e:hover{
background-color:#FF0000;
}
if you want the color to change when you have simply add the :hover
pseudo
div.e:hover {
background-color:red;
}
.e:hover{
background-color:#FF0000;
}
if you want the color to change when you have simply add the :hover
pseudo
div.e:hover {
background-color:red;
}