Answers for "align tet to the middle of the screen html"

CSS
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

Code answers related to "align tet to the middle of the screen html"

Browse Popular Code Answers by Language