I\'m trying to make a div\'s background color change on mouse over.
the div {background:white;} the div a:hover{background:grey
you could just contain the div in anchor tag like this:
a{ text-decoration:none; color:#ffffff; } a div{ width:100px; height:100px; background:#ff4500; } a div:hover{ background:#0078d7; }
Hover me