Answers for "center text in middle of page html w3schools"

CSS
13

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
14

how to get text in middle of page html

text-align: center;
Posted by: Guest on July-28-2020

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

Browse Popular Code Answers by Language