Answers for "how to make element in middle of a container"

CSS
2

how to center a div

/* Assume the div has a class of "center"
   The below would center it horizontally
*/
.center {
	margin-left: auto;
    margin-right: auto; 
}

/* There is a shorthand and it is given below */
.center {
	margin: 0 auto; 
}
Posted by: Guest on January-24-2022

Code answers related to "how to make element in middle of a container"

Browse Popular Code Answers by Language