CSS Layout How to - Center to page








Question

We would like to know how to center to page.

Answer


<!--   w ww  .ja  v a 2 s . c o m-->
<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
div {
  background: #282;
  width: 90%;
  height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
</style>
</head>
<body>
  <div>Content</div>
</body>
</html>

The code above is rendered as follows: