Skip to content

Instantly share code, notes, and snippets.

@Kaiyuan
Created September 18, 2012 09:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kaiyuan/3742250 to your computer and use it in GitHub Desktop.
Save Kaiyuan/3742250 to your computer and use it in GitHub Desktop.
div Center
<div class="BoxOne">
<div class="BoxTwo">
X
</div>
</div>
<style type="text/css">
.BoxOne {
position: relative;
width: 100%;
height: 100%;
}
.BoxTwo {
position: absolute;
width: 320px;
height: 480px;
left: 50%;
top: 50%;
margin-left: -160px;
margin-top: -240px;
}
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment