-
-
Save GavinJoyce/41d8585ee6542dc5f090845dc6c7a8c3 to your computer and use it in GitHub Desktop.
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
<style> | |
.flex-container { | |
display: flex; | |
width: 100%; | |
background-color: #eeeeee; | |
} | |
.flex-menu { | |
width: 100px; | |
margin: 10px; | |
} | |
.flex-content { | |
background-color: cornflowerblue; | |
width: 100%; | |
margin: 10px; | |
} | |
</style> | |
<div class="flex-container"> | |
<div class="flex-menu"> | |
menu | |
</div> | |
<div class="flex-item"> | |
content | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment