Absolute vs Fixed Positioning

后端 未结 2 1241
太阳男子
太阳男子 2021-01-29 11:40

I have a custom dialog box which is shown when I click a button. After the dialog box is shown I show a overlay. The height and width of the overlay is 100% x 100%.

2条回答
  •  天涯浪人
    2021-01-29 11:57

    position: absolute takes the element out of line with the document. so the height is that of the viewport, and the top,left values are static. Change this to position: fixed and you will see better results.

提交回复
热议问题