Skip to content

Instantly share code, notes, and snippets.

@shuding
Last active August 29, 2015 14:14
Show Gist options
  • Save shuding/6f1db1d3a72a9faebfef to your computer and use it in GitHub Desktop.
Save shuding/6f1db1d3a72a9faebfef to your computer and use it in GitHub Desktop.
Absolutly center align
<html>
<head>
<style>
body {
margin: 0;
}
#A {
text-align: center;
height: 100%;
}
#B, #C {
display: inline-block;
vertical-align: middle;
}
#C {
height: 100%;
}
</style>
</head>
<body>
<div id='A'>
<div id='B'>
<span>hello</span><br/>
<span>hello</span><br/>
<span>hello</span>
</div>
<div id='C'></div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment