How to overlay a div (or any element) over a table row (tr)?

后端 未结 6 1065
轮回少年
轮回少年 2021-01-30 12:58

I\'d like to overlay a div (or any element that\'ll work) over a table row (tr tag) that happens to have more than one column.

I have tried a few methods, which don\'t s

6条回答
  •  天涯浪人
    2021-01-30 13:28

    This should do:

    var bottomTop = $divBottom.offset().top;
    var bottomLeft = $divBottom.offset().left;
    

提交回复
热议问题