Center a 'div' in the middle of the screen, even when the page is scrolled up or down?
Change the position
attribute to fixed
instead of absolute
.
Change position:absolute;
to position:fixed;
Quote: I would like to know how to display the div in the middle of the screen, whether user has scrolled up/down.
Change
position: absolute;
To
position: fixed;
W3C specifications for position: absolute
and for position: fixed
.