<html>
<head>
<title>Centered Image</title>
<style>
div.wrap {
width:500px;
height: 200px;
position: absolute;
top: 50%;
left: 50%;
/* notice the following numbers are exactly half of the width and height listed above. this needs to stay equal. for example if your div box width was 800px and height was 600px, you need change the margin left and margin top to -400px and -300px respectively */
margin-left: -250px;
margin-top: -100px;
background: #ff0000;
}
</style>
</head>
<body>
<div class="wrap"> <!-- put any text/image you want in here and it will stay centered --> </div>
</body>
</html>