Last active
April 21, 2022 23:25
-
-
Save thiagolenz/12720b30241a3a3c1dda8e5351f52ca1 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
| <html> | |
| <head> | |
| <style> | |
| .parent { | |
| display: flex; | |
| background-color: darkgrey; | |
| width: 400px; | |
| height: 400px; | |
| } | |
| .child { | |
| width: 50px; | |
| height: 50px; | |
| background-color: green; | |
| margin: auto; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <div class="parent"> | |
| <div class="child"></div> | |
| </div> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment