Skip to content

Instantly share code, notes, and snippets.

@pr3ssh
Created November 15, 2013 17:54
Show Gist options
  • Save pr3ssh/7488668 to your computer and use it in GitHub Desktop.
Save pr3ssh/7488668 to your computer and use it in GitHub Desktop.
Centering a box in a page
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Info</title>
<style type="text/css" media="screen">
body {
background-color: 34AAFF;
}
#heading {
height: 50%;
width: 50%;
margin: auto;
position: absolute;
top:0;
bottom:0;
left:0;
right:0;
background-color: #FFF;
}
</style>
</head>
<body>
<div id="heading"></div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment