Answers for "how to center everything in css page"

CSS
2

keeping elements of container in center

.container {
margin : 0 auto;
}
Posted by: Guest on July-28-2020
-1

how to align a component in the middle of page

div {
	width: 100px;
	height: 100px;
	background-color: red;
	
	position: absolute;
	top:0;
	bottom: 0;
	left: 0;
	right: 0;
  	
	margin: auto;
}
Posted by: Guest on May-06-2020

Code answers related to "how to center everything in css page"

Browse Popular Code Answers by Language