Skip to content

Instantly share code, notes, and snippets.

@toy-crane
Last active January 18, 2021 18:33
Show Gist options
  • Save toy-crane/7cc1ec7b01ac56ed115a0113fbb9b65e to your computer and use it in GitHub Desktop.
Save toy-crane/7cc1ec7b01ac56ed115a0113fbb9b65e 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>
<div class="container">
<div class="box">A</div>
<div class="box">B</div>
<div class="box">
높이가<br />
커진 <br />
C
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment