Skip to content

Instantly share code, notes, and snippets.

@regecoder
Last active December 22, 2023 00:44
Show Gist options
  • Save regecoder/650437cdf3ffd96d1a8095ecf59865bc to your computer and use it in GitHub Desktop.
Save regecoder/650437cdf3ffd96d1a8095ecf59865bc to your computer and use it in GitHub Desktop.
CSS: Permet le positionnement horizontal centré d'un élément
.element-wrapper {
left: 50%;
}
.element {
position: relative;
left: -50%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment