Last active
August 8, 2022 20:57
-
-
Save MariaJackson1/164c28f794febacc63151be995d2efaa to your computer and use it in GitHub Desktop.
Flexbox Vertical and Horizontal Centering
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
| <div class="box"> | |
| <div>Dior</div> | |
| </div> | |
| .box { | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| height: 35em; | |
| } | |
| .box div { | |
| font-family: 'Times New Roman'; | |
| font-size: 10rem; | |
| font-weight: 400; | |
| letter-spacing: 2px; | |
| text-transform: uppercase; | |
| color: #000; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment