Skip to content

Instantly share code, notes, and snippets.

@6temes
Created February 13, 2015 07:57
Show Gist options
  • Save 6temes/fdf79773058940e05b1b to your computer and use it in GitHub Desktop.
Save 6temes/fdf79773058940e05b1b to your computer and use it in GitHub Desktop.
PwQGoo
<html>
<head>
<title>Flexbox example</title>
</head>
<body>
<aside>
<h1>Sidebar</h1>
<p>
lipsum...
</p>
</aside>
<article>
<h1>Content</h1>
<p>
lipsum...
</p>
</article>
</body>
</html>
body {
margin:0;
height: 100vh;
display: flex;
}
aside, article {
/*overflow-y: scroll;*/
padding: 2em;
}
aside {
flex: 1;
background-color: green;
}
article {
flex: 2;
background-color: yellow;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment