Answers for "how to vertically center content in css"

CSS
0

css center vertically

/* 100vh = 100% Viewport Height */
body {
	display: flex;
	height: 100vh;
	flex-direction: column;
	justify-content: center;
}
/* add */ align-items: center; /*to also center horizontally.*/
Posted by: Guest on February-18-2021

Code answers related to "how to vertically center content in css"

Browse Popular Code Answers by Language