Skip to content

Instantly share code, notes, and snippets.

@kodetop
Last active March 30, 2024 22:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kodetop/924fe9b84cf1cafaf1ca090c62f15bfa to your computer and use it in GitHub Desktop.
Save kodetop/924fe9b84cf1cafaf1ca090c62f15bfa to your computer and use it in GitHub Desktop.
Centrado vertical con Position
.center-position {
position: relative;
}
.center-position .block {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment