Created
May 23, 2022 14:16
-
-
Save jasdeepkhalsa/bb5f0411d3db6fab85602ff688c2de3a to your computer and use it in GitHub Desktop.
Center horizontally without using calc or a fixed width
This file contains 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
.center { | |
postion: absolute; | |
left: 50%; | |
transform: translateX(-50%); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment