Answers for "js how to center a div"

CSS
0

how to center a div

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

how to center a div

.div {
	width: 80%;
    margin: auto;
}
Posted by: Guest on September-27-2021
4

how to center a div

margin:auto
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language