Answers for "center a box html"

CSS
2

center a div

.container{
	margin: 0 auto;
    display: flex;
    align-items: center;
}
Posted by: Guest on August-03-2021
0

center a div

.parent {
	display : flex;
    justify-content : center;
    align-items : center;
}
Posted by: Guest on January-23-2022

Browse Popular Code Answers by Language