react-virtualized - 有没有办法在 Table 的行上添加悬停样式

react-virtualized - Is there a way to add hover style on rows of the Table

当我们将鼠标悬停在行上时,相应行的背景颜色应更改为#e7e7e7。

我在我的项目中使用 styled-components,这就是您如何使用它来设置行的样式。

const StyledTable = styled(Table)`
    .ReactVirtualized__Table__row {
        :hover {
            background: red;
        }
    }
`;

我认为您使用了错误的选择器。

您使用的是什么样式库?