Answers for "how to center something based on its center 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
0

how to center a div

<center>
  <div> YOUR DIV </div>
</center>
Posted by: Guest on January-30-2022

Code answers related to "how to center something based on its center css"

Browse Popular Code Answers by Language