Answers for "write in a vertical and horizontal center css"

CSS
5

css center vertically and horizontally

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

center anything horizontally and vertically in CSS

.center {
  display: flex;
  align-items: center;
  justify-content: center;       
}
Posted by: Guest on April-26-2022

Code answers related to "write in a vertical and horizontal center css"

Browse Popular Code Answers by Language