Skip to content

Instantly share code, notes, and snippets.

@roncioso
Forked from anonymous/jsbin.oxuyop.css
Created November 25, 2013 22:59
Show Gist options
  • Save roncioso/7650467 to your computer and use it in GitHub Desktop.
Save roncioso/7650467 to your computer and use it in GitHub Desktop.
center vertically
html,body{
height: 100%;
text-align: center;
}
.inliner {
height: 100%;
}
.inliner,
.inliner + * {
display: inline-block;
vertical-align: middle;
}
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
<i class="inliner"></i><div>Sample text<br> in two lines,<br>3 lines <br> and so on</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment