i use the follow code ,the hover background color is no changed
[code]
.hover {
background-color: red;
}
but use overwrite rowselected can do it.
<style>
.rowselected{
background-color: red;
}
</style>
some body can tell me what wrong with my first code?