Answers for "how to make a things in center in css"

CSS
1

css center everything

/* to make "align-items: center" work: use "min-height: 100vh;"
100vh = 100% Viewport Height */
body {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
Posted by: Guest on February-19-2021
7

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 to make a things in center in css"

Browse Popular Code Answers by Language