Skip to content

Instantly share code, notes, and snippets.

@Mason8r
Last active October 25, 2015 20:52
Show Gist options
  • Save Mason8r/5f6f555f9576589ce525 to your computer and use it in GitHub Desktop.
Save Mason8r/5f6f555f9576589ce525 to your computer and use it in GitHub Desktop.
<!doctype html>
<html>
<head>
<title>Find some zen</title>
<style>
* {
margin: 0;
padding: 0;
}
body {
display:flex;
}
div {
display: flex;
flex-direction: row-reverse;
flex: 1;
height: 100vh;
align-items: center;
justify-content: center;
background: white;
}
div:last-child {
order: 2;
background: black;
color: white;
}
</style>
</head>
<body>
<div>
<p>Yin</p>
</div>
<div>
<p>Yang</p>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment