我想将SlickGrid中的前3行着色为蓝色。我想知道这样做的简单方法。
我尝试了以下代码,但它不起作用:
data.getItemMetadata = function (index)
{
if (index == 0 || index == 1 || index == 2)
{
return {cssClasses: "BlueColor"};
}
}
答案 0 :(得分:0)
您可以使用以下CSS:
.slick-row:nth-child(-n+3){
/*BlueColor class contents, if you place it before the .even and .odd classes you will need :important*/
}