Answers for "css arrange items vertically duv"

CSS
2

how to distribute vertically the items in css

/* 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 "css arrange items vertically duv"

Browse Popular Code Answers by Language