Skip to content

Instantly share code, notes, and snippets.

@darcyliu
Created April 20, 2011 08:04
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 darcyliu/930669 to your computer and use it in GitHub Desktop.
Save darcyliu/930669 to your computer and use it in GitHub Desktop.
auto center
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>auto center</title>
<style>
.box{
width: 500px;
border: 2px solid #777;
padding: 5px;
text-align: center;
}
.hi{
width: 100px;
height: 100px;
display: inline-block;
background: #789;
margin:0 auto;
vertical-align:middle;/*must*/
}
</style>
</head>
<body>
<div class="box">
<div class="hi">hello</div>
<div class="hi"></div>
<div class="hi">hello</div>
<div class="hi">hello</div>
</div>
<div class="box">
<div class="hi">hello</div>
<div class="hi"></div>
<div class="hi">hello</div>
</div>
<div class="box">
<div class="hi">hello</div>
<div class="hi">hello</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment