Last active
March 23, 2017 10:11
-
-
Save mbmohib/eb120818925184503dd29b1e498fad9d to your computer and use it in GitHub Desktop.
CSS Tricks
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
| /* 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