Skip to content

Instantly share code, notes, and snippets.

@MkShaman
Created January 20, 2016 09:05
Show Gist options
  • Select an option

  • Save MkShaman/e638bf1626e27404e8ec to your computer and use it in GitHub Desktop.

Select an option

Save MkShaman/e638bf1626e27404e8ec to your computer and use it in GitHub Desktop.
Выравнивание текста по высотре
<!DOCTYPE html>
<html>
<head>
<style type="text/css">
html, body {
height:100%;
width:100%;
margin:0;
display:flex;
}
p {
margin:auto;
font-size: 2em;
}
</style>
</head>
<body>
<p>Hello, World.</p>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment