Answers for "ho to center a div at the center of the screen"

CSS
13

center div in middle of page

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

how to center a div on teh screen

after years of research we've concluded it's impossible
Posted by: Guest on November-15-2021

Code answers related to "ho to center a div at the center of the screen"

Browse Popular Code Answers by Language