Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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