Answers for "how to center everything in a page ihn html 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

center something

.center {
margin: auto;
width: 60%;
border: 5px solid #FFFF00;
padding: 10px;
}
Posted by: Guest on October-24-2021

Code answers related to "how to center everything in a page ihn html css"

Browse Popular Code Answers by Language