Skip to content

Instantly share code, notes, and snippets.

@dreamyguy
Created March 24, 2017 15:01
Show Gist options
  • Save dreamyguy/5da8e95651ed74128470811b469ffb31 to your computer and use it in GitHub Desktop.
Save dreamyguy/5da8e95651ed74128470811b469ffb31 to your computer and use it in GitHub Desktop.
Center absolutely positioned elements
.el-parent {
position: relative;
}
.el {
position: absolute;
left: 0;
right: 0;
margin: 0 auto;
text-align: center;
}
/* width is not necessary here :) */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment