Return to Snippet

Revision: 28751
at July 14, 2010 02:24 by iqwebdev


Initial Code
// CSS background-image Technique:

html {
   width:100%;
   height:100%;
   background:url(logo.png) center center no-repeat;
}


// CSS + Inline Image Technique:

img {
   position: absolute;
   top: 50%;
   left: 50%;
   width: 500px;
   height: 500px;
   margin-top: -250px; /* Half the height */
   margin-left: -250px; /* Half the width */
}

Initial URL


Initial Description


Initial Title
CSS Centering an Image (Vertical & Horizontal)

Initial Tags
image

Initial Language
CSS