Skip to content

Instantly share code, notes, and snippets.

@toy-crane
Last active January 18, 2021 18:32
Show Gist options
  • Select an option

  • Save toy-crane/48b785dc0df0b734265e69add99ff6d9 to your computer and use it in GitHub Desktop.

Select an option

Save toy-crane/48b785dc0df0b734265e69add99ff6d9 to your computer and use it in GitHub Desktop.
<style>
.container {
margin: 1em 0;
border: 3px dotted #4a4a4a;
padding: 0.5em;
background-color: #c2edc8;
display: flex;
flex-direction: row;
}
.box {
border: 3px solid white;
padding: 1em;
font-size: 2em;
background-color: #3f29ef;
color: white;
}
</style>
<body>
<div class="container">
<div class="box">A</div>
<div class="box">B</div>
<div class="box">C</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment