Answers for "how can i put an element in the center with position"

CSS
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 "how can i put an element in the center with position"

Browse Popular Code Answers by Language