Created
January 17, 2024 13:41
-
-
Save Shimilbi/9facffe7536ddbbf1ebfec6803964837 to your computer and use it in GitHub Desktop.
CSS Vertical-Align once and for all
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
/* | |
* Example of use: | |
<some_dom_element center> | |
Or: | |
<some_dom_element valign> | |
*/ | |
*[center]{position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%);} | |
*[valign]{position:absolute;top:50%;transform:translateY(-50%);} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment