Last active
January 18, 2021 18:32
-
-
Save toy-crane/48b785dc0df0b734265e69add99ff6d9 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> | |
| <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