/ Published in: CSS
From css-tricks.com
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/*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 */ }
URL: http://css-tricks.com/snippets/css/absolute-center-vertical-horizontal-an-image/