Answers for "to put a shape in the center of the screen html"

CSS
9

css center element on screen

.centered {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
Posted by: Guest on June-03-2020
6

centering css elements

// add to the parent element
.parent {
	display: grid;
    place-items: center;
}
Posted by: Guest on August-06-2020

Code answers related to "to put a shape in the center of the screen html"

Browse Popular Code Answers by Language