Skip to content

Instantly share code, notes, and snippets.

@kimjoar
Created November 13, 2014 22:11
Show Gist options
  • Save kimjoar/99bbdeb5a33d94c98a2f to your computer and use it in GitHub Desktop.
Save kimjoar/99bbdeb5a33d94c98a2f to your computer and use it in GitHub Desktop.
Fill all directions
<!doctype html>
<html>
<head>
<style>
html, body {
height: 100%;
}
body {
margin: 0;
padding: 0;
}
.outer {
height: 100%;
display: flex;
flex-direction: column;
}
.outer-item {
height: 100%;
background-color: red;
flex: 1;
}
.inner {
height: 100%;
display: flex;
flex-direction: row;
}
.inner-item {
background-color: yellow;
flex: 1;
}
</style>
</head>
<body>
<div class="outer">
<div class="outer-item">
<div class="inner">
<div class="inner-item">1</div>
<div class="inner-item">2</div>
</div>
</div>
<div class="outer-item">
<div class="inner">
<div class="inner-item">3</div>
<div class="inner-item">4</div>
<div class="inner-item">5</div>
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment