A Pen by jinhan1414 on CodePen.
Created
January 30, 2024 06:50
-
-
Save jinhan1414/b34df723120e4b683fc226a7092109b3 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
| <div class='container'> | |
| <div class='item'></div> | |
| </div> |
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
| .item { | |
| background-color: orange; | |
| width: 100px; | |
| height: 50px; | |
| } | |
| .container { | |
| background-color: green; | |
| height: 200px; | |
| display: grid; | |
| align-items: center; | |
| justify-items: center; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment