Created
February 13, 2015 07:57
-
-
Save 6temes/fdf79773058940e05b1b to your computer and use it in GitHub Desktop.
PwQGoo
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
<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> |
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
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