Created
November 13, 2014 22:11
-
-
Save kimjoar/99bbdeb5a33d94c98a2f to your computer and use it in GitHub Desktop.
Fill all directions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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