Skip to content

Instantly share code, notes, and snippets.

@toy-crane
Last active January 18, 2021 18:36
Show Gist options
  • Save toy-crane/5f607ecba9f8c57b12c591999b7da54e to your computer and use it in GitHub Desktop.
Save toy-crane/5f607ecba9f8c57b12c591999b7da54e to your computer and use it in GitHub Desktop.
<style>
.container {
margin: 1em 0;
background-color: #c2edc8;
display: flex;
flex-direction: row;
}
.box {
padding: 1em;
font-size: 2em;
background-color: #3f29ef;
color: white;
}
.home {
margin-left: auto;
}
</style>
<body>
<div class="container">
<div class="box">Toy-Crane Blog</div>
<div class="box home">Home</div>
<div class="box">About</div>
<div class="box">Login</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment