Answers for "html text in middle of page"

7

align in the middle of page html

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  /* bring your own prefixes */
  transform: translate(-50%, -50%);
}
Posted by: Guest on March-01-2020
0

how to put text in the middle of a page html

<center>text</center>
Posted by: Guest on March-20-2021
1

align centre

.headerTwoDiv{
			margin:1% auto;
			margin-right: auto; margin-left: auto; width: 21%; 
			padding-top: 11px;
		}
Posted by: Guest on September-07-2020

Code answers related to "html text in middle of page"

Browse Popular Code Answers by Language