Skip to content

Instantly share code, notes, and snippets.

@SarathSantoshDamaraju
Created February 16, 2018 07:19
Show Gist options
  • Save SarathSantoshDamaraju/95c5c33696878a561bb1a64e65974a8b to your computer and use it in GitHub Desktop.
Save SarathSantoshDamaraju/95c5c33696878a561bb1a64e65974a8b to your computer and use it in GitHub Desktop.
CSS-- Vertically and Horizontally centre align Text to the Whole Page
/*
<body>
<p>Hello world</p>
</body>
*/
p{
margin: 0;
position: absolute;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment