Created
April 20, 2011 08:04
-
-
Save darcyliu/930669 to your computer and use it in GitHub Desktop.
auto center
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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