Table with Rowspan Hover and Zebra effect

前端 未结 2 633
终归单人心
终归单人心 2020-12-30 11:19

I am trying to create a table that has a rowspan, zebra effect and highlights the row on hover. I kind of got it working but not quite.

It should be like this: http:

2条回答
  •  有刺的猬
    2020-12-30 11:39

    Something like:

    // stripe
    tr:nth-child(even) {
        background-color: #ccc;
    }
    // hover
    tr:hover {
         background-color: #c00;
    }
    

    should work. Post your code up.

提交回复
热议问题