Answers for "center element css in div"

CSS
4

how to center a div element

/*ADD MARGIN auto to left and right*/
.box1{
    width:80%;
    margin:0 auto;
}
Posted by: Guest on August-27-2020
0

how to center a div

.center { 
	display: grid;
    place-items: center;
}
Posted by: Guest on January-07-2022

Browse Popular Code Answers by Language