I have an image - a loading image.
I want this image to be displayed in the center of the page. How can i do this?
The code I wrote is:
img.loading
{
position:absolute;
left:0px;
top:0px;
z-index:1;
}
How can I make this image always displayed in the center of the page?
source
share