Here are the CSS styles I'm using:
@media (min-width: 769px) and (max-width: 992px)
{
.box:hover{
background-color:#000000;
}
}
@media screen and (min-width: 993px)
{
.box:hover{
background-color:#ffffff;
}
}
For screen sizes between 769px and 992px, the box should change to black (#000000) when hovered over, but it remains white (#ffffff).
Is there something that I'm overlooking in my code?