Created
September 6, 2013 03:48
-
-
Save lionhylra/6459287 to your computer and use it in GitHub Desktop.
centering the html content
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
html, body { | |
/*This is important!*/ | |
text-align: center; | |
} | |
p {text-align: left;} | |
body { | |
margin: 0; | |
padding: 0; | |
background: #697281; | |
text-align: left; | |
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; | |
font-size: 13px; | |
color: #F1F5F8; | |
background-color:#2A2A2A; | |
} | |
*{ | |
/*This is important!*/ | |
margin: 0 auto 0 auto; | |
text-align:left; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment