Position overlay div

前端 未结 3 819
轮回少年
轮回少年 2020-12-19 17:19

I have a link in a table cell and when the link is clicked I show a hidden div.

Currently I use position: absolute and z-index:10. It works fine, but I would like t

3条回答
  •  暖寄归人
    2020-12-19 17:51

    position: relative;
    

    instead of

    position: absolute;
    

    Relative says to measure top and left from the parent element, absolute says to measure from the top left corner of the page.

提交回复
热议问题