Skip to content

Instantly share code, notes, and snippets.

@mbmohib
Last active March 23, 2017 10:11
Show Gist options
  • Save mbmohib/eb120818925184503dd29b1e498fad9d to your computer and use it in GitHub Desktop.
Save mbmohib/eb120818925184503dd29b1e498fad9d to your computer and use it in GitHub Desktop.
CSS Tricks
/* Center elements Using Position: */
element {
position:absolute;
left:0;
right:0;
margin-left:auto;
margin-right:auto;
}
/* Centering Element in CSS */
div {
text-align: center;
margin-left: 25%;
margin-right:25%;
width: 50%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment