Last active
January 18, 2021 18:33
-
-
Save toy-crane/7cc1ec7b01ac56ed115a0113fbb9b65e 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> | |
.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