Skip to content

Instantly share code, notes, and snippets.

@lionhylra
Created September 6, 2013 03:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lionhylra/6459287 to your computer and use it in GitHub Desktop.
Save lionhylra/6459287 to your computer and use it in GitHub Desktop.
centering the html content
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