0

In my kendo grid, i have implemented on hover color change by including the below css code which was suggested in one of the telerik forums.

.k-grid table tr:hover {
    background :rgb(107, 188, 242) !important;
    cursor: pointer !important;
}

This works perfectly fine in IE browsers, But in google chrome the color partially gets retained when i hover from one row to another(attached image). What mite have been possibly gone wrong here?

enter image description here

Thanks, Adarsh

4

1 回答 1

3

Interestingly, when I apply a hover to the td like below, it worked fine!

.k-grid table tr:hover td {
    background :rgb(107, 188, 242) !important;
    cursor: pointer !important;
}
于 2014-05-22T08:37:12.250 回答