根据以下链接中的说明。
https://docs.handsontable.com/0.24.2/tutorial-styling.html#page-rows
我已将以下.css代码添加到我的网站,以允许在Handsontable实例中交替使用行颜色。
/* Every even row */
.ht_master tr:nth-of-type(even) > td {
background-color: hsl(199, 100%, 95%);
}
然而,这会产生意外的副作用,即在上下文菜单和过滤菜单中交替显示行的颜色。见下面的截图。
如何更正我的.css代码以仅替换表格本身的行颜色而不是其他菜单?