Monday, 16 April 2012

Center Div Horizontally and Vertically


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Center Div Horizontally and Vertically</title>
<style>
.center {
   width: 300px;
   height: 300px;
   position: absolute;
   left: 50%;
   top: 50%;
   margin-left: -150px;
   margin-top: -150px;
   background-color:#3CC;
}
</style>
</head>


<body>
<div class="center"></div>
</body>
</html>

No comments:

Post a Comment