show/hide this revision's text 3 deleted 1 characters in body

Set the position of .progressPanel to relative, and the position of .progressImage to absolute. The following works for me in FF, IE, FirefoxSafari. Set the negative margins to half the width/height of your image for perfect centering. Note that some parent of the progressPanel (body in this case) needs a height so that the progressPanel can fill it.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <title>Test</title>
        <style type="text/css">
        body {
          height:700px;
        }
        .progressImage {
    	  position:absolute;
    	  top:50%;
    	  left:50%;
    	  margin-left:-16px;
    	  margin-top:-16px;
    	}

    	.progressPanel {
    	  position:relative;
    	  height:100%;
    	  width:100%;
    	  text-align:center;
    	  background:red;
    	}
        </style>
    </head>
    <body>
    <div class="progressPanel"><img class="progressImage" src="pic.jpg"/></div>
    </body>
</html>
show/hide this revision's text 2 full example

Set the position of .progressPanel to relative, and the position of .progressImage to absolute. The following works for me in FF, IE, Firefox. Set the negative margins to half the width/height of your image for perfect centering. Note that some parent of the progressPanel (body in this case) needs a height so that the progressPanel can fill it.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
        <title>Test</title>
        <style type="text/css">
        body {
          height:700px;
        }
        .progressImage {
    	  position:absolute;
    	  top:50%;
    	  left:50%;
    	  margin-left:-16px;
    	  margin-top:-16px;
    	}

    	.progressPanel {
    	  position:relative;
    	  height:100%;
    	  width:100%;
    	  text-align:center;
    	  display:nonebackground:red;
    	}
        </style>
    </head>
    <body>
    <div class="progressPanel"><img class="progressImage" src="pic.jpg"/></div>
    </body>
</html>
show/hide this revision's text 1

Set the position of .progressPanel to relative, and the position of .progressImage to absolute.

.progressImage {
  position:absolute;
  top:50%;
}

.progressPanel {
  position:relative;
  height:100%;
  width:100%;
  text-align:center;
  display:none;
}