Link entire table row?

后端 未结 8 1254
后悔当初
后悔当初 2020-12-01 03:43

I know it is possible to link an entire table cell with CSS.

.tableClass td a{
   display: block;
}

Is there a way to apply a link to an en

8条回答
  •  抹茶落季
    2020-12-01 04:18

    I feel like the simplest solution is sans javascript and simply putting the link in each cell (provided you don't have massive gullies between your cells or really think border lines). Have your css:

    .tableClass td a{
       display: block;
    }
    

    and then add a link per cell:

    Link name Link description Link somthing else

    boring but clean.

提交回复
热议问题