Created
March 27, 2026 07:56
-
-
Save ahmetilhn/a134713543ae31dee1a7b6c0f19e0a89 to your computer and use it in GitHub Desktop.
Css Aligner Util
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
| .vertical-center { | |
| display: flex; | |
| flex-direction: column; | |
| align-items: center; | |
| justify-content: center; | |
| } | |
| .horizontal-center { | |
| display: flex; | |
| flex-direction: row; | |
| align-items: center; | |
| justify-content: center; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment