Answers for "html move to center of page"

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

Code answers related to "html move to center of page"

Browse Popular Code Answers by Language