Skip to content

Instantly share code, notes, and snippets.

@ethanpil
Created April 27, 2020 06:20
Show Gist options
  • Save ethanpil/045c5c670eb68b34653f43b9919df670 to your computer and use it in GitHub Desktop.
Save ethanpil/045c5c670eb68b34653f43b9919df670 to your computer and use it in GitHub Desktop.
Flexbox Dead Center
<html>
<head>
<title>Flexbox Dead Center</title>
<style>
.deadcenter {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 100%;
}
</style>
</head>
<body>
<div class="deadcenter">
<img src="image.png" />
<h1>Welcome to the center of the universe.</h1>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment