Absolute vs Fixed Positioning

后端 未结 2 1220
太阳男子
太阳男子 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:54

    Use position:fixed.

    http://jsfiddle.net/ryJEW/2/

    #overlay {
    opacity: 0.5;
    width: 100%;
    height: 100%;
    background-color: black;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    }
    

提交回复
热议问题