You can do this with the :hover header. Here's what i would do.
:hover
.target:hover { background-color: #fafafa; cursor: pointer; } .target { background-color: #ffffff; }
It will remain white until hovered on.
white