Last active
January 18, 2021 18:26
-
-
Save toy-crane/93fba6f0df3ed5977b81a85055513e0f 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 { | |
| 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